Merge pull request #307489 from r-ryantm/auto-update/clusterctl

clusterctl: 1.7.0 -> 1.7.1
This commit is contained in:
superherointj 2024-04-30 07:57:36 -03:00 committed by GitHub
commit 490ba6848c
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -2,13 +2,13 @@
buildGoModule rec {
pname = "clusterctl";
version = "1.7.0";
version = "1.7.1";
src = fetchFromGitHub {
owner = "kubernetes-sigs";
repo = "cluster-api";
rev = "v${version}";
hash = "sha256-pG0jr+LCKMwJGDndEZw6vho3zylsoGBVdXqruSS7SDQ=";
hash = "sha256-e+Ut6xoNUY9cJjjJ43P0siEa+G1igllcb8veirk1UX0=";
};
vendorHash = "sha256-ALRnccGjPGuAITtuz79Cao95NhvSczAzspSMXytlw+A=";
@ -29,6 +29,7 @@ buildGoModule rec {
installShellCompletion --cmd clusterctl \
--bash <($out/bin/clusterctl completion bash) \
--fish <($out/bin/clusterctl completion fish) \
--zsh <($out/bin/clusterctl completion zsh)
'';
@ -38,12 +39,12 @@ buildGoModule rec {
version = "v${version}";
};
meta = with lib; {
meta = {
changelog = "https://github.com/kubernetes-sigs/cluster-api/releases/tag/${src.rev}";
description = "Kubernetes cluster API tool";
mainProgram = "clusterctl";
homepage = "https://cluster-api.sigs.k8s.io/";
license = licenses.asl20;
maintainers = with maintainers; [ qjoly ];
license = lib.licenses.asl20;
maintainers = with lib.maintainers; [ qjoly ];
};
}