From 97d9b98f0f8fb8644053fc2e0f36a363d4d278ad Mon Sep 17 00:00:00 2001 From: Daniel Pacak Date: Thu, 25 Jun 2020 15:35:50 +0200 Subject: [PATCH] fix: Indentation in krew manifest so we can merge it automatically Signed-off-by: Daniel Pacak --- .krew.yaml | 75 +++++++++++++++++++++++++++--------------------------- 1 file changed, 38 insertions(+), 37 deletions(-) diff --git a/.krew.yaml b/.krew.yaml index f83695bcb..226a1620a 100644 --- a/.krew.yaml +++ b/.krew.yaml @@ -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