fluxcd-operator: init at 0.19.0 (#401176)

This commit is contained in:
Felix Bargfeldt
2025-04-25 18:22:17 +02:00
committed by GitHub
2 changed files with 77 additions and 0 deletions
+11
View File
@@ -15090,6 +15090,17 @@
githubId = 3139724;
name = "Matteo Pacini";
};
mattfield = {
email = "matt@mild.systems";
github = "mattfield";
githubId = 686826;
name = "Matt Field";
keys = [
{
fingerprint = "8BEE 1295 D9EC 9560 0273 7E57 45B8 21B5 CB29 C07A";
}
];
};
matthewbauer = {
email = "mjbauer95@gmail.com";
github = "matthewbauer";
@@ -0,0 +1,66 @@
{
lib,
buildGo124Module,
fetchFromGitHub,
installShellFiles,
versionCheckHook,
nix-update-script,
stdenv,
}:
buildGo124Module (finalAttrs: {
pname = "fluxcd-operator";
version = "0.19.0";
src = fetchFromGitHub {
owner = "controlplaneio-fluxcd";
repo = "fluxcd-operator";
tag = "v${finalAttrs.version}";
hash = "sha256-2AkO8nie2ep3ASy0hkM9JEryv0ekyRNPkCoZ3WgBQwU=";
};
vendorHash = "sha256-sQhp89AzICeu3oRVh3ys93PyeU5A24T36QwQsHxMSaY=";
ldflags = [
"-s"
"-w"
"-X main.VERSION=${finalAttrs.version}"
];
subPackages = [ "cmd/cli" ];
nativeBuildInputs = [ installShellFiles ];
nativeInstallCheckInputs = [ versionCheckHook ];
versionCheckProgram = "${placeholder "out"}/bin/flux-operator";
versionCheckProgramArg = "--version";
doInstallCheck = true;
env.CGO_ENABLED = 0;
postInstall = lib.optionalString (stdenv.buildPlatform.canExecute stdenv.hostPlatform) ''
mv $out/bin/cli $out/bin/flux-operator
for shell in bash fish zsh; do
installShellCompletion --cmd flux-operator \
--$shell <($out/bin/flux-operator completion $shell)
done
'';
passthru.updateScript = nix-update-script { };
meta = {
description = "Kubernetes controller for managing the lifecycle of Flux CD";
homepage = "https://fluxcd.control-plane.io/operator/";
downloadPage = "https://github.com/controlplaneio-fluxcd/flux-operator";
longDescription = ''
The Flux Operator is a Kubernetes CRD controller that manages the lifecycle of CNCF Flux CD
and the ControlPlane enterprise distribution. The operator extends Flux with self-service
capabilities and preview environments for GitLab and GitHub pull requests testing.
'';
changelog = "https://github.com/controlplaneio-fluxcd/flux-operator/releases/tag/v${finalAttrs.version}";
license = lib.licenses.agpl3Only;
maintainers = with lib.maintainers; [
mattfield
];
mainProgram = "flux-operator";
};
})