fix(actions): install k3d binary directly instead of running the install script
Some checks failed
/ validate (push) Failing after 4s
Some checks failed
/ validate (push) Failing after 4s
This commit is contained in:
parent
b2d8c623f2
commit
ccb98da243
1 changed files with 3 additions and 5 deletions
|
|
@ -26,15 +26,13 @@ jobs:
|
||||||
./manifests/
|
./manifests/
|
||||||
- name: Install k3d
|
- name: Install k3d
|
||||||
run: |
|
run: |
|
||||||
wget -O /tmp/k3d-install.sh https://raw.githubusercontent.com/k3d-io/k3d/main/install.sh
|
wget -O /usr/local/bin/k3d https://github.com/k3d-io/releases/download/v5.7.4/k3d-linux-amd64
|
||||||
apk add curl
|
chmod +x /usr/local/bin/k3d
|
||||||
bash /tmp/k3d-install.sh
|
|
||||||
|
|
||||||
- name: Create test cluster
|
- name: Create test cluster
|
||||||
run: |
|
run: |
|
||||||
k3s cluster create test --wait
|
k3d cluster create test --wait
|
||||||
kubectl cluster-info
|
kubectl cluster-info
|
||||||
|
|
||||||
- name: Apply manifests
|
- name: Apply manifests
|
||||||
run: |
|
run: |
|
||||||
kubectl apply -f manifests/ --recursive
|
kubectl apply -f manifests/ --recursive
|
||||||
|
|
|
||||||
Loading…
Add table
Reference in a new issue