-
Notifications
You must be signed in to change notification settings - Fork 2
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
1 parent
aa76eb5
commit 7de33aa
Showing
2 changed files
with
51 additions
and
0 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 |
---|---|---|
|
@@ -30,3 +30,6 @@ jobs: | |
args: release --clean | ||
env: | ||
GITHUB_TOKEN: ${{ secrets.PAT }} | ||
|
||
- 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,48 @@ | ||
apiVersion: krew.googlecontainertools.github.com/v1alpha2 | ||
kind: Plugin | ||
metadata: | ||
name: duplicate | ||
spec: | ||
version: {{ .TagName }} | ||
homepage: https://github.com/Telemaco019/duplik8s | ||
shortDescription: Duplicate Pods in a Kubernetes cluster. | ||
description: | | ||
This plugin makes it super easy to duplicate Kubernetes Pods with overridden commands and configurations. | ||
It's similar to `kubectl debug --copy-to`, but with more features and flexibility. | ||
platforms: | ||
- selector: | ||
matchLabels: | ||
os: darwin | ||
arch: amd64 | ||
{{addURIAndSha "https://github.com/Telemaco019/duplik8s/releases/download/{{ .TagName }}/duplik8s_Darwin_x86_64.tar.gz" .TagName | indent 6 }} | ||
bin: duplik8s | ||
- selector: | ||
matchLabels: | ||
os: darwin | ||
arch: arm64 | ||
{{addURIAndSha "https://github.com/Telemaco019/duplik8s/releases/download/{{ .TagName }}/duplik8s_Darwin_arm64.tar.gz" .TagName | indent 6 }} | ||
bin: duplik8s | ||
- selector: | ||
matchLabels: | ||
os: linux | ||
arch: amd64 | ||
{{addURIAndSha "https://github.com/Telemaco019/duplik8s/releases/download/{{ .TagName }}/duplik8s_Linux_x86_64.tar.gz" .TagName | indent 6 }} | ||
bin: duplik8s | ||
- selector: | ||
matchLabels: | ||
os: linux | ||
arch: arm64 | ||
{{addURIAndSha "https://github.com/Telemaco019/duplik8s/releases/download/{{ .TagName }}/duplik8s_Linux_arm64.tar.gz" .TagName | indent 6 }} | ||
bin: duplik8s | ||
- selector: | ||
matchLabels: | ||
os: windows | ||
arch: amd64 | ||
{{addURIAndSha "https://github.com/Telemaco019/duplik8s/releases/download/{{ .TagName }}/duplik8s_Windows_x86_64.zip" .TagName | indent 6 }} | ||
bin: duplik8s.exe | ||
- selector: | ||
matchLabels: | ||
os: windows | ||
arch: arm64 | ||
{{addURIAndSha "https://github.com/Telemaco019/duplik8s/releases/download/{{ .TagName }}/duplik8s_Windows_arm64.zip" .TagName | indent 6 }} | ||
bin: duplik8s.exe |