From ede3f35724edd94dcf89e7dc001b92dcb15c5cad Mon Sep 17 00:00:00 2001 From: Michael Kriese Date: Tue, 21 Mar 2023 14:28:22 +0100 Subject: [PATCH] ci: fixes --- .woodpecker/e2e.yml | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/.woodpecker/e2e.yml b/.woodpecker/e2e.yml index beba4c4..ea42fe4 100644 --- a/.woodpecker/e2e.yml +++ b/.woodpecker/e2e.yml @@ -19,15 +19,16 @@ pipeline: image: alpine:3.17.2 pull: true commands: - - apk add --no-cache -X http://dl-cdn.alpinelinux.org/alpine/edge/testing kind + - apk add --no-cache -X http://dl-cdn.alpinelinux.org/alpine/edge/community kind - export KUBECONFIG=$${CI_WORKSPACE}/kube.config - kind create cluster --name chart-testing --node-image kindest/node:${k8s} --wait 60s + - kind get clusters chart-testing: image: alpine:3.17.2 pull: true commands: - - apk add --no-cache -X http://dl-cdn.alpinelinux.org/alpine/edge/testing helm kubectl kind + - apk add --no-cache helm kubectl - export KUBECONFIG=$${CI_WORKSPACE}/kube.config - kubectl get no -o wide @@ -35,7 +36,7 @@ pipeline: image: alpine:3.17.2 pull: true commands: - - apk add --no-cache -X http://dl-cdn.alpinelinux.org/alpine/edge/testing kind + - apk add --no-cache -X http://dl-cdn.alpinelinux.org/alpine/edge/community kind - export KUBECONFIG=$${CI_WORKSPACE}/kube.config - kind delete cluster--name chart-testing when: