istioctl: install completions
This commit is contained in:
parent
e6ae7c3029
commit
bc74289607
@ -1,4 +1,4 @@
|
|||||||
{ lib, buildGoModule, fetchFromGitHub, go-bindata }:
|
{ lib, buildGoModule, fetchFromGitHub, go-bindata, installShellFiles }:
|
||||||
|
|
||||||
buildGoModule rec {
|
buildGoModule rec {
|
||||||
pname = "istioctl";
|
pname = "istioctl";
|
||||||
@ -12,7 +12,7 @@ buildGoModule rec {
|
|||||||
};
|
};
|
||||||
vendorSha256 = "0cc0lmjsxrn3f78k95wklf3yn5k7h8slwnwmssy1i1h0bkcg1bai";
|
vendorSha256 = "0cc0lmjsxrn3f78k95wklf3yn5k7h8slwnwmssy1i1h0bkcg1bai";
|
||||||
|
|
||||||
nativeBuildInputs = [ go-bindata ];
|
nativeBuildInputs = [ go-bindata installShellFiles ];
|
||||||
|
|
||||||
# Bundle charts
|
# Bundle charts
|
||||||
preBuild = ''
|
preBuild = ''
|
||||||
@ -28,10 +28,17 @@ buildGoModule rec {
|
|||||||
"istio.io/pkg/version.buildTag=${version}"
|
"istio.io/pkg/version.buildTag=${version}"
|
||||||
"istio.io/pkg/version.buildHub=docker.io/istio"
|
"istio.io/pkg/version.buildHub=docker.io/istio"
|
||||||
];
|
];
|
||||||
in ["-ldflags=${lib.concatMapStringsSep " " (attr: "-X ${attr}") attrs}"];
|
in ["-ldflags=-s -w ${lib.concatMapStringsSep " " (attr: "-X ${attr}") attrs}"];
|
||||||
|
|
||||||
subPackages = [ "istioctl/cmd/istioctl" ];
|
subPackages = [ "istioctl/cmd/istioctl" ];
|
||||||
|
|
||||||
|
postInstall = ''
|
||||||
|
$out/bin/istioctl collateral --man --bash --zsh
|
||||||
|
installManPage *.1
|
||||||
|
installShellCompletion istioctl.bash
|
||||||
|
installShellCompletion --zsh _istioctl
|
||||||
|
'';
|
||||||
|
|
||||||
meta = with lib; {
|
meta = with lib; {
|
||||||
description = "Istio configuration command line utility for service operators to debug and diagnose their Istio mesh";
|
description = "Istio configuration command line utility for service operators to debug and diagnose their Istio mesh";
|
||||||
homepage = "https://istio.io/latest/docs/reference/commands/istioctl";
|
homepage = "https://istio.io/latest/docs/reference/commands/istioctl";
|
||||||
|
Loading…
x
Reference in New Issue
Block a user