From 5515a564dcf9f48572bf0cae473af3bbd49f12c6 Mon Sep 17 00:00:00 2001 From: Marc Brugger Date: Tue, 8 Oct 2024 21:17:21 +0200 Subject: [PATCH] Update kindest/node Docker tag to v1.31.1 (#18) Co-authored-by: Renovate Bot --- action.yaml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/action.yaml b/action.yaml index 1379f0c..747ba5b 100644 --- a/action.yaml +++ b/action.yaml @@ -16,7 +16,7 @@ inputs: description: 'The version of node image to use' required: false # renovate: docker - default: 'kindest/node:v1.31.0' + default: 'kindest/node:v1.31.1' ingress_enabled: description: 'enable ingress for the cluster' required: false @@ -65,12 +65,12 @@ runs: docker network connect kind kind-registry kubectl apply -f ${{ github.action_path }}/configmap-registry.yaml - - name: Set up Ingress + - name: Set up Ingress ${{ ingress_version }} if: ${{ inputs.ingress_enabled == 'true' }} shell: bash run: | # https://kind.sigs.k8s.io/docs/user/ingress/ - kubectl apply -f https://raw.githubusercontent.com/kubernetes/ingress-nginx/main/deploy/static/provider/kind/deploy.yaml + kubectl apply -f https://raw.githubusercontent.com/kubernetes/ingress-nginx/helm-chart-${{ ingress_version }}/deploy/static/provider/kind/deploy.yaml kubectl wait --namespace ingress-nginx \ --for=condition=ready pod \ --selector=app.kubernetes.io/component=controller \