forked from aquasecurity/starboard
-
Notifications
You must be signed in to change notification settings - Fork 0
/
.krew.yaml
54 lines (52 loc) · 1.77 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
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
apiVersion: krew.googlecontainertools.github.com/v1alpha2
kind: Plugin
metadata:
name: starboard
spec:
version: "{{ .TagName }}"
homepage: https://github.com/aquasecurity/starboard
shortDescription: >-
Toolkit for finding risks in kubernetes resources
description: |+2
Starboard enables results from vulnerability scanners, workload auditors,
and configuration benchmark tests to be incorporated into Kubernetes CRDs
(Custom Resource Definitions) and from there, accessed through the
Kubernetes API.
Users familiar with kubectl or with a dashboard tool like Octant can find
security risk information at their fingertips.
caveats: |
The plugin requires access to create Jobs and CustomResources.
platforms:
- selector:
matchLabels:
os: darwin
arch: amd64
{{addURIAndSha "https://github.com/aquasecurity/starboard/releases/download/{{ .TagName }}/starboard_darwin_x86_64.tar.gz" .TagName | indent 6}}
files:
- from: starboard
to: .
- from: LICENSE
to: .
bin: starboard
- selector:
matchLabels:
os: linux
arch: amd64
{{addURIAndSha "https://github.com/aquasecurity/starboard/releases/download/{{ .TagName }}/starboard_linux_x86_64.tar.gz" .TagName | indent 6}}
files:
- from: starboard
to: .
- from: LICENSE
to: .
bin: starboard
- selector:
matchLabels:
os: windows
arch: amd64
{{addURIAndSha "https://github.com/aquasecurity/starboard/releases/download/{{ .TagName }}/starboard_windows_x86_64.zip" .TagName | indent 6}}
files:
- from: starboard.exe
to: .
- from: LICENSE
to: .
bin: starboard.exe