-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Renaming to address PR: kubernetes-sigs/krew-index#3142 from krew review
- Loading branch information
1 parent
70927b4
commit 4862797
Showing
17 changed files
with
52 additions
and
52 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
6 changes: 3 additions & 3 deletions
6
netscaler-k8s-plugin/.goreleaser.yaml → netscaler-plugin/.goreleaser.yaml
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
File renamed without changes.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,3 @@ | ||
build: | ||
DEBUG=true GOPROXY=direct GOSUMDB=off go mod tidy | ||
DEBUG=true GOPROXY=direct GOSUMDB=off go build -ldflags "-w -s" -buildvcs=false netscaler_k8s/kubectl-netscaler_k8s.go | ||
DEBUG=true GOPROXY=direct GOSUMDB=off go build -ldflags "-w -s" -buildvcs=false netscaler/kubectl-netscaler.go |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
File renamed without changes.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
File renamed without changes.
18 changes: 9 additions & 9 deletions
18
netscaler-k8s-plugin/krew.yaml → netscaler-plugin/krew.yaml
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,38 +1,38 @@ | ||
apiVersion: krew.googlecontainertools.github.com/v1alpha2 | ||
kind: Plugin | ||
metadata: | ||
name: netscaler-k8s | ||
name: netscaler | ||
spec: | ||
shortDescription: A Kubernetes plugin for inspecting Ingress Controller and associated NetScaler deployments | ||
description: | | ||
The official kubectl plugin for netscaler-k8s. | ||
The official kubectl plugin for netscaler. | ||
version: {{ .TagName }} | ||
homepage: https://github.com/netscaler/modern-apps-toolkit/tree/main/netscaler-k8s-plugin#readme | ||
homepage: https://github.com/netscaler/modern-apps-toolkit/tree/main/netscaler-plugin#readme | ||
platforms: | ||
- selector: | ||
matchLabels: | ||
os: darwin | ||
arch: amd64 | ||
{{addURIAndSha "https://github.com/netscaler/modern-apps-toolkit/releases/download/{{ .TagName }}/netscaler-k8s-plugin_{{ .TagName }}_Darwin_x86_64.tar.gz" .TagName | indent 6 }} | ||
bin: ./kubectl-netscaler_k8s | ||
{{addURIAndSha "https://github.com/netscaler/modern-apps-toolkit/releases/download/{{ .TagName }}/netscaler-plugin_{{ .TagName }}_Darwin_x86_64.tar.gz" .TagName | indent 6 }} | ||
bin: ./kubectl-netscaler | ||
files: | ||
- from: "*" | ||
to: "." | ||
- selector: | ||
matchLabels: | ||
os: linux | ||
arch: amd64 | ||
{{addURIAndSha "https://github.com/netscaler/modern-apps-toolkit/releases/download/{{ .TagName }}/netscaler-k8s-plugin_{{ .TagName }}_Linux_x86_64.tar.gz" .TagName | indent 6 }} | ||
bin: ./kubectl-netscaler_k8s | ||
{{addURIAndSha "https://github.com/netscaler/modern-apps-toolkit/releases/download/{{ .TagName }}/netscaler-plugin_{{ .TagName }}_Linux_x86_64.tar.gz" .TagName | indent 6 }} | ||
bin: ./kubectl-netscaler | ||
files: | ||
- from: "*" | ||
to: "." | ||
- selector: | ||
matchLabels: | ||
os: darwin | ||
arch: amd64 | ||
{{addURIAndSha "https://github.com/netscaler/modern-apps-toolkit/releases/download/{{ .TagName }}/netscaler-k8s-plugin_{{ .TagName }}_Windows_x86_64.zip" .TagName | indent 6 }} | ||
bin: ./kubectl-netscaler_k8s.exe | ||
{{addURIAndSha "https://github.com/netscaler/modern-apps-toolkit/releases/download/{{ .TagName }}/netscaler-plugin_{{ .TagName }}_Windows_x86_64.zip" .TagName | indent 6 }} | ||
bin: ./kubectl-netscaler.exe | ||
files: | ||
- from: "*" | ||
to: "." |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
File renamed without changes.