-
Notifications
You must be signed in to change notification settings - Fork 0
/
.krew.yaml
34 lines (34 loc) · 1.36 KB
/
.krew.yaml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
apiVersion: krew.googlecontainertools.github.com/v1alpha2
kind: Plugin
metadata:
name: config-doctor
spec:
version: {{ .TagName }}
shortDescription: Validate and test kubeconfigs
homepage: https://github.com/aptakube/kubectl-config-doctor
description: This plugin validates and test different kubeconfigs settings
platforms:
- bin: ./kubectl-config-doctor.exe
{{addURIAndSha "https://github.com/aptakube/kubectl-config-doctor/releases/download/{{ .TagName }}/kubectl-config-doctor-windows-amd64.zip" .TagName }}
selector:
matchLabels:
os: windows
arch: amd64
- bin: ./kubectl-config-doctor
{{addURIAndSha "https://github.com/aptakube/kubectl-config-doctor/releases/download/{{ .TagName }}/kubectl-config-doctor-linux-amd64.tar.gz" .TagName }}
selector:
matchLabels:
os: linux
arch: amd64
- bin: ./kubectl-config-doctor
{{addURIAndSha "https://github.com/aptakube/kubectl-config-doctor/releases/download/{{ .TagName }}/kubectl-config-doctor-darwin-amd64.tar.gz" .TagName }}
selector:
matchLabels:
os: darwin
arch: amd64
- bin: ./kubectl-config-doctor
{{addURIAndSha "https://github.com/aptakube/kubectl-config-doctor/releases/download/{{ .TagName }}/kubectl-config-doctor-darwin-arm64.tar.gz" .TagName }}
selector:
matchLabels:
os: darwin
arch: arm64