forked from aquasecurity/starboard
-
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: Automate krew plugin updates with krew-release-bot (aquasecuri…
…ty#72) Resolves: aquasecurity#58 Co-authored-by: Carol <krol3@users.noreply.github.com> Co-authored-by: Daniel Pacak <pacak.daniel@gmail.com>
- Loading branch information
1 parent
898d422
commit 6761c67
Showing
2 changed files
with
55 additions
and
0 deletions.
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,53 @@ | ||
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 }} | ||
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 |