From e099df6439c87b52e18908920652779f6704d718 Mon Sep 17 00:00:00 2001 From: Cedric Lamoriniere Date: Mon, 12 Feb 2024 22:25:41 +0100 Subject: [PATCH] fix(tooling): add config file path in helm/kind-action (#1317) --- .github/kind_config.yaml | 16 +++++++--------- .github/workflows/ci.yaml | 2 ++ 2 files changed, 9 insertions(+), 9 deletions(-) diff --git a/.github/kind_config.yaml b/.github/kind_config.yaml index 4a421438a..fc38ce068 100644 --- a/.github/kind_config.yaml +++ b/.github/kind_config.yaml @@ -1,12 +1,10 @@ +--- kind: Cluster apiVersion: kind.x-k8s.io/v1alpha4 nodes: -- role: control-plane - labels: - disktype: ssd -- role: worker - labels: - disktype: ssd -- role: worker - labels: - disktype: ssd + - role: control-plane + labels: + disktype: ssd + - role: worker + labels: + disktype: ssd diff --git a/.github/workflows/ci.yaml b/.github/workflows/ci.yaml index c842ec95e..fddde5673 100644 --- a/.github/workflows/ci.yaml +++ b/.github/workflows/ci.yaml @@ -104,6 +104,7 @@ jobs: install-chart: name: install-chart runs-on: ubuntu-20.04 + timeout-minutes: 60 needs: - lint-chart - kubeval-chart @@ -124,6 +125,7 @@ jobs: uses: helm/kind-action@v1.5.0 with: node_image: kindest/node:${{ matrix.k8s }} + config: .github/kind_config.yaml - uses: actions/setup-python@v4 with: python-version: 3.7