From 2e024f4500bad537b7a684653ef4fbb09ae476aa Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Andr=C3=A9=20Bauer?= Date: Fri, 7 Feb 2020 16:02:07 +0100 Subject: [PATCH 1/3] use helm action again, updated k8s versions, fixed variable name MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: André Bauer --- .github/workflows/ci.yaml | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/.github/workflows/ci.yaml b/.github/workflows/ci.yaml index e63344fa..b50d7ef0 100644 --- a/.github/workflows/ci.yaml +++ b/.github/workflows/ci.yaml @@ -49,18 +49,18 @@ jobs: - v1.11.10 - v1.12.10 - v1.13.12 - - v1.14.9 - - v1.15.6 - - v1.16.3 - - v1.17.0 + - v1.14.10 + - v1.15.7 + - v1.16.4 + - v1.17.2 steps: - name: Checkout uses: actions/checkout@v1 - name: Create kind cluster - uses: monotek/kind-action@kind070 + uses: helm/kind-action@master with: config: .github/kind-config.yaml - node-image: ${{ matrix.k8s }} + node_image: ${{ matrix.k8s }} - name: Run chart-testing (install) uses: helm/chart-testing-action@master with: From b602e116f4e77704e7c9f47ed2bda87616e465bb Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Andr=C3=A9=20Bauer?= Date: Fri, 7 Feb 2020 16:09:13 +0100 Subject: [PATCH 2/3] removed k8s 1.11 beacause of storage class install error MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: André Bauer --- .github/workflows/ci.yaml | 1 - 1 file changed, 1 deletion(-) diff --git a/.github/workflows/ci.yaml b/.github/workflows/ci.yaml index b50d7ef0..73b84191 100644 --- a/.github/workflows/ci.yaml +++ b/.github/workflows/ci.yaml @@ -46,7 +46,6 @@ jobs: strategy: matrix: k8s: - - v1.11.10 - v1.12.10 - v1.13.12 - v1.14.10 From ecde94e58b2b2095d33735165e173ed72b1f1508 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Andr=C3=A9=20Bauer?= Date: Fri, 7 Feb 2020 16:15:53 +0100 Subject: [PATCH 3/3] added cluster version to step name MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: André Bauer --- .github/workflows/ci.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/ci.yaml b/.github/workflows/ci.yaml index 73b84191..0ed6a2b7 100644 --- a/.github/workflows/ci.yaml +++ b/.github/workflows/ci.yaml @@ -55,7 +55,7 @@ jobs: steps: - name: Checkout uses: actions/checkout@v1 - - name: Create kind cluster + - name: Create kind ${{ matrix.k8s }} cluster uses: helm/kind-action@master with: config: .github/kind-config.yaml