Skip to content

Commit

Permalink
Removing unnecessary "v" from krew config
Browse files Browse the repository at this point in the history
  • Loading branch information
robscott committed Jan 25, 2023
1 parent 67b5f1b commit fbbdafe
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions .krew.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ spec:
files:
- from: "*"
to: "."
{{addURIAndSha "https://github.com/robscott/kube-capacity/releases/download/v{{ .TagName }}/kube-capacity_{{ .TagName }}_Darwin_x86_64.tar.gz" .TagName }}
{{addURIAndSha "https://github.com/robscott/kube-capacity/releases/download/{{ .TagName }}/kube-capacity_{{ .TagName }}_Darwin_x86_64.tar.gz" .TagName }}
- selector:
matchLabels:
os: darwin
Expand All @@ -24,7 +24,7 @@ spec:
files:
- from: "*"
to: "."
{{addURIAndSha "https://github.com/robscott/kube-capacity/releases/download/v{{ .TagName }}/kube-capacity_{{ .TagName }}_Darwin_arm64.tar.gz" .TagName }}
{{addURIAndSha "https://github.com/robscott/kube-capacity/releases/download/{{ .TagName }}/kube-capacity_{{ .TagName }}_Darwin_arm64.tar.gz" .TagName }}
- selector:
matchLabels:
os: linux
Expand All @@ -33,7 +33,7 @@ spec:
files:
- from: "*"
to: "."
{{addURIAndSha "https://github.com/robscott/kube-capacity/releases/download/v{{ .TagName }}/kube-capacity_{{ .TagName }}_Linux_x86_64.tar.gz" .TagName }}
{{addURIAndSha "https://github.com/robscott/kube-capacity/releases/download/{{ .TagName }}/kube-capacity_{{ .TagName }}_Linux_x86_64.tar.gz" .TagName }}
- selector:
matchLabels:
os: linux
Expand All @@ -42,7 +42,7 @@ spec:
files:
- from: "*"
to: "."
{{addURIAndSha "https://github.com/robscott/kube-capacity/releases/download/v{{ .TagName }}/kube-capacity_{{ .TagName }}_Linux_arm64.tar.gz" .TagName }}
{{addURIAndSha "https://github.com/robscott/kube-capacity/releases/download/{{ .TagName }}/kube-capacity_{{ .TagName }}_Linux_arm64.tar.gz" .TagName }}
- selector:
matchLabels:
os: windows
Expand All @@ -51,6 +51,6 @@ spec:
files:
- from: "*"
to: "."
{{addURIAndSha "https://github.com/robscott/kube-capacity/releases/download/v{{ .TagName }}/kube-capacity_{{ .TagName }}_Windows_x86_64.tar.gz" .TagName }}
{{addURIAndSha "https://github.com/robscott/kube-capacity/releases/download/{{ .TagName }}/kube-capacity_{{ .TagName }}_Windows_x86_64.tar.gz" .TagName }}
description: |
A simple CLI that provides an overview of the resource requests, limits, and utilization in a Kubernetes cluster.

0 comments on commit fbbdafe

Please sign in to comment.