Skip to content

Commit

Permalink
fix: exclude completion files from krew plugin installation config
Browse files Browse the repository at this point in the history
Signed-off-by: Utku Ozdemir <[email protected]>
  • Loading branch information
utkuozdemir committed Feb 4, 2022
1 parent a37e3eb commit 159b6ff
Showing 1 changed file with 18 additions and 0 deletions.
18 changes: 18 additions & 0 deletions .krew.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -12,36 +12,54 @@ spec:
arch: amd64
{{addURIAndSha "https://github.com/utkuozdemir/pv-migrate/releases/download/{{ .TagName }}/pv-migrate_{{ .TagName }}_linux_x86_64.tar.gz" .TagName | indent 6 }}
bin: pv-migrate
files:
- from: pv-migrate
to: .
- selector:
matchLabels:
os: linux
arch: arm64
{{addURIAndSha "https://github.com/utkuozdemir/pv-migrate/releases/download/{{ .TagName }}/pv-migrate_{{ .TagName }}_linux_arm64.tar.gz" .TagName | indent 6 }}
bin: pv-migrate
files:
- from: pv-migrate
to: .
- selector:
matchLabels:
os: linux
arch: arm
{{addURIAndSha "https://github.com/utkuozdemir/pv-migrate/releases/download/{{ .TagName }}/pv-migrate_{{ .TagName }}_linux_armv7.tar.gz" .TagName | indent 6 }}
bin: pv-migrate
files:
- from: pv-migrate
to: .
- selector:
matchLabels:
os: darwin
arch: amd64
{{addURIAndSha "https://github.com/utkuozdemir/pv-migrate/releases/download/{{ .TagName }}/pv-migrate_{{ .TagName }}_darwin_x86_64.tar.gz" .TagName | indent 6 }}
bin: pv-migrate
files:
- from: pv-migrate
to: .
- selector:
matchLabels:
os: darwin
arch: arm64
{{addURIAndSha "https://github.com/utkuozdemir/pv-migrate/releases/download/{{ .TagName }}/pv-migrate_{{ .TagName }}_darwin_arm64.tar.gz" .TagName | indent 6 }}
bin: pv-migrate
files:
- from: pv-migrate
to: .
- selector:
matchLabels:
os: windows
arch: amd64
{{addURIAndSha "https://github.com/utkuozdemir/pv-migrate/releases/download/{{ .TagName }}/pv-migrate_{{ .TagName }}_windows_x86_64.zip" .TagName | indent 6 }}
bin: pv-migrate.exe
files:
- from: pv-migrate.exe
to: .
shortDescription: Migrate data across persistent volumes
description: |
pv-migrate uses ssh and rsync to copy data across persistent volumes

0 comments on commit 159b6ff

Please sign in to comment.