-
Notifications
You must be signed in to change notification settings - Fork 10
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
3 changed files
with
67 additions
and
8 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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -24,5 +24,5 @@ jobs: | |
args: release --rm-dist | ||
env: | ||
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | ||
# - name: Update new version in krew-index | ||
# uses: rajatjindal/[email protected] | ||
- name: Update new version in krew-index | ||
uses: rajatjindal/[email protected] |
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 |
---|---|---|
@@ -0,0 +1,42 @@ | ||
apiVersion: krew.googlecontainertools.github.com/v1alpha2 | ||
kind: Plugin | ||
metadata: | ||
name: karbon | ||
spec: | ||
version: {{ .TagName }} | ||
homepage: https://github.com/nutanix/kubectl-karbon | ||
platforms: | ||
- selector: | ||
matchLabels: | ||
os: darwin | ||
arch: amd64 | ||
{{addURIAndSha "https://github.com/nutanix/kubectl-karbon/releases/download/{{ .TagName }}/kubectl-karbon_{{ .TagName }}_darwin_amd64.tar.gz" .TagName }} | ||
bin: kubectl-karbon | ||
- selector: | ||
matchLabels: | ||
os: darwin | ||
arch: arm64 | ||
{{addURIAndSha "https://github.com/nutanix/kubectl-karbon/releases/download/{{ .TagName }}/kubectl-karbon_{{ .TagName }}_darwin_arm64.tar.gz" .TagName }} | ||
bin: kubectl-karbon | ||
- selector: | ||
matchLabels: | ||
os: linux | ||
arch: amd64 | ||
{{addURIAndSha "https://github.com/nutanix/kubectl-karbon/releases/download/{{ .TagName }}/kubectl-karbon_{{ .TagName }}_linux_amd64.tar.gz" .TagName }} | ||
bin: kubectl-karbon | ||
- selector: | ||
matchLabels: | ||
os: linux | ||
arch: arm64 | ||
{{addURIAndSha "https://github.com/nutanix/kubectl-karbon/releases/download/{{ .TagName }}/kubectl-karbon_{{ .TagName }}_linux_arm64.tar.gz" .TagName }} | ||
bin: kubectl-karbon | ||
- selector: | ||
matchLabels: | ||
os: windows | ||
arch: amd64 | ||
{{addURIAndSha "https://github.com/nutanix/kubectl-karbon/releases/download/{{ .TagName }}/kubectl-karbon_{{ .TagName }}_windows_amd64.tar.gz" .TagName }} | ||
bin: kubectl-karbon.exe | ||
shortDescription: Connect to Nutanix Karbon cluster | ||
description: | | ||
This plugin allow to quickly connect to an existing Nutanix karbon cluster without the need to connect to Prism UI. | ||
Read more documentation at: https://github.com/nutanix/kubectl-karbon |
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