Skip to content

Commit

Permalink
fix: Indentation in krew manifest so we can merge it automatically
Browse files Browse the repository at this point in the history
Signed-off-by: Daniel Pacak <pacak.daniel@gmail.com>
  • Loading branch information
danielpacak committed Jun 25, 2020
1 parent 6761c67 commit 97d9b98
Showing 1 changed file with 38 additions and 37 deletions.
75 changes: 38 additions & 37 deletions .krew.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -3,51 +3,52 @@ kind: Plugin
metadata:
name: starboard
spec:
version: {{ .TagName }}
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.
(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 }}
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 }}
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 }}
files:
- from: starboard.exe
to: .
- from: LICENSE
to: .
bin: starboard.exe
- 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

0 comments on commit 97d9b98

Please sign in to comment.