-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
chore: release new versions on krew index (#13)
Signed-off-by: Mario Constanti <github@constanti.de>
- Loading branch information
1 parent
73a9e79
commit 35b9026
Showing
3 changed files
with
43 additions
and
1 deletion.
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
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,37 @@ | ||
# SPDX-License-Identifier: MIT | ||
apiVersion: krew.googlecontainertools.github.com/v1alpha2 | ||
kind: Plugin | ||
metadata: | ||
name: dpm | ||
spec: | ||
version: "{{ .TagName }}" | ||
homepage: https://github.com/bavarianbidi/kubectl-dpm | ||
shortDescription: "Manages custom debug profiles for pods" | ||
description: | | ||
Wraps the custom debug profile subcommand to make it easier | ||
to switch between different debug profiles for pods. | ||
platforms: | ||
- selector: | ||
matchLabels: | ||
os: darwin | ||
arch: amd64 | ||
{{addURIAndSha "https://github.com/bavarianbidi/kubectl-dpm/releases/download/{{ .TagName }}/kubectl-dpm_{{ .TagName }}_darwin_amd64.tar.gz" .TagName | indent 6 }} | ||
bin: kubectl-dpm | ||
- selector: | ||
matchLabels: | ||
os: darwin | ||
arch: arm64 | ||
{{addURIAndSha "https://github.com/bavarianbidi/kubectl-dpm/releases/download/{{ .TagName }}/kubectl-dpm_{{ .TagName }}_darwin_arm64.tar.gz" .TagName | indent 6 }} | ||
bin: kubectl-dpm | ||
- selector: | ||
matchLabels: | ||
os: linux | ||
arch: amd64 | ||
{{addURIAndSha "https://github.com/bavarianbidi/kubectl-dpm/releases/download/{{ .TagName }}/kubectl-dpm_{{ .TagName }}_linux_amd64.tar.gz" .TagName | indent 6 }} | ||
bin: kubectl-dpm | ||
- selector: | ||
matchLabels: | ||
os: linux | ||
arch: arm64 | ||
bin: kubectl-dpm | ||
{{addURIAndSha "https://github.com/bavarianbidi/kubectl-dpm/releases/download/{{ .TagName }}/kubectl-dpm_{{ .TagName }}_linux_arm64.tar.gz" .TagName | indent 6 }} |