Skip to content

Commit 33aa6c2

Browse files
committed
Use binary for cloud-provider-kind
1 parent fe837f1 commit 33aa6c2

File tree

1 file changed

+8
-4
lines changed

1 file changed

+8
-4
lines changed

.github/workflows/helm.yml

+8-4
Original file line numberDiff line numberDiff line change
@@ -85,10 +85,12 @@ jobs:
8585
BUILD_AGENT=gha
8686
8787
- name: Install cloud-provider-kind
88-
run: go install sigs.k8s.io/cloud-provider-kind@latest
88+
run: |
89+
curl -fsSL -O https://github.com/kubernetes-sigs/cloud-provider-kind/releases/download/v0.2.0/cloud-provider-kind_0.2.0_linux_amd64.tar.gz
90+
tar -xvf cloud-provider-kind_0.2.0_linux_amd64.tar.gz
8991
9092
- name: Run cloud-provider-kind
91-
run: ~/go/bin/cloud-provider-kind & > cloud-provider-kind.log 2>&1
93+
run: ./cloud-provider-kind & > cloud-provider-kind.log 2>&1
9294

9395
- name: Deploy Kubernetes
9496
id: k8s
@@ -127,10 +129,12 @@ jobs:
127129
fetch-depth: 0
128130

129131
- name: Install cloud-provider-kind
130-
run: go install sigs.k8s.io/cloud-provider-kind@latest
132+
run: |
133+
curl -fsSL -O https://github.com/kubernetes-sigs/cloud-provider-kind/releases/download/v0.2.0/cloud-provider-kind_0.2.0_linux_amd64.tar.gz
134+
tar -xvf cloud-provider-kind_0.2.0_linux_amd64.tar.gz
131135
132136
- name: Run cloud-provider-kind
133-
run: ~/go/bin/cloud-provider-kind & > cloud-provider-kind.log 2>&1
137+
run: ./cloud-provider-kind & > cloud-provider-kind.log 2>&1
134138

135139
- name: Deploy Kubernetes
136140
id: k8s

0 commit comments

Comments
 (0)