-
Notifications
You must be signed in to change notification settings - Fork 102
/
krew-template.yaml
44 lines (44 loc) · 1.53 KB
/
krew-template.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
35
36
37
38
39
40
41
42
43
44
apiVersion: krew.googlecontainertools.github.com/v1alpha2
kind: Plugin
metadata:
name: neat
spec:
version: "v2.0.4"
shortDescription: Remove clutter from Kubernetes manifests to make them more readable.
homepage: https://github.com/itaysk/kubectl-neat
description: |
If you try to `kubectl get` resources you have just created,
they be unreadably verbose. `kubectl-neat` cleans that up by
removing default values, runtime information, and other internal fields.
Examples:
`$ kubectl get pod mypod -o yaml | kubectl neat`
`$ kubectl neat get -- pod mypod -o yaml`
platforms:
- selector:
matchLabels:
os: darwin
arch: amd64
uri: https://github.com/itaysk/kubectl-neat/releases/download/v2.0.4/kubectl-neat_darwin_amd64.tar.gz
sha256: ${sha256}
bin: "./kubectl-neat"
- selector:
matchLabels:
os: darwin
arch: arm64
uri: https://github.com/itaysk/kubectl-neat/releases/download/v2.0.4/kubectl-neat_darwin_arm64.tar.gz
sha256: ${sha256}
bin: "./kubectl-neat"
- selector:
matchLabels:
os: linux
arch: amd64
uri: https://github.com/itaysk/kubectl-neat/releases/download/v2.0.4/kubectl-neat_linux_amd64.tar.gz
sha256: ${sha256}
bin: "./kubectl-neat"
- selector:
matchLabels:
os: linux
arch: arm64
uri: https://github.com/itaysk/kubectl-neat/releases/download/v2.0.4/kubectl-neat_linux_arm64.tar.gz
sha256: ${sha256}
bin: "./kubectl-neat"