Skip to content

Commit

Permalink
fix: krew manifest (#1091)
Browse files Browse the repository at this point in the history
Invalid indentation has broken automated release script.
Remove entry for s390x architecture, which is not supported by krew.
See also kubernetes-sigs/krew-index#2133.

Signed-off-by: Daniel Pacak <pacak.daniel@gmail.com>
  • Loading branch information
danielpacak authored Mar 31, 2022
1 parent 16a615b commit 45acabb
Show file tree
Hide file tree
Showing 2 changed files with 12 additions and 23 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/release.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -201,4 +201,4 @@ jobs:
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
- name: Update new version for plugin 'starboard' in krew-index
uses: rajatjindal/krew-release-bot@v0.0.40
uses: rajatjindal/krew-release-bot@v0.0.42
33 changes: 11 additions & 22 deletions .krew.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ spec:
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.
Expand Down Expand Up @@ -56,13 +56,13 @@ spec:
matchLabels:
os: darwin
arch: arm64
{{addURIAndSha "https://github.com/aquasecurity/starboard/releases/download/{{ .TagName }}/starboard_darwin_ARM64.tar.gz" .TagName | indent 6}}
files:
- from: starboard
to: .
- from: LICENSE
to: .
bin: starboard
{{addURIAndSha "https://github.com/aquasecurity/starboard/releases/download/{{ .TagName }}/starboard_darwin_ARM64.tar.gz" .TagName | indent 6}}
files:
- from: starboard
to: .
- from: LICENSE
to: .
bin: starboard
- selector:
matchLabels:
os: linux
Expand All @@ -78,21 +78,10 @@ spec:
matchLabels:
os: windows
arch: arm64
{{addURIAndSha "https://github.com/aquasecurity/starboard/releases/download/{{ .TagName }}/starboard_windows_ARM64.zip" .TagName | indent 6}}
files:
- from: starboard.exe
to: .
- from: LICENSE
to: .
bin: starboard.exe
- selector:
matchLabels:
os: linux
arch: s390x
{{addURIAndSha "https://github.com/aquasecurity/starboard/releases/download/{{ .TagName }}/starboard_linux_s390x.tar.gz" .TagName | indent 6}}
{{addURIAndSha "https://github.com/aquasecurity/starboard/releases/download/{{ .TagName }}/starboard_windows_ARM64.zip" .TagName | indent 6}}
files:
- from: starboard
- from: starboard.exe
to: .
- from: LICENSE
to: .
bin: starboard
bin: starboard.exe

0 comments on commit 45acabb

Please sign in to comment.