From ac84c70a4c3a94d05938ede617d0ba694bc9ed9d Mon Sep 17 00:00:00 2001 From: Hidde Beydals Date: Tue, 22 Sep 2020 12:27:46 +0200 Subject: [PATCH] ci: pin Minio to v6.3.1 Due to corrupt v7.0.0 chart release. --- .github/workflows/e2e.yaml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/.github/workflows/e2e.yaml b/.github/workflows/e2e.yaml index 11139f91..7463c457 100644 --- a/.github/workflows/e2e.yaml +++ b/.github/workflows/e2e.yaml @@ -67,10 +67,13 @@ jobs: kubectl -n source-system wait helmchart/mariadb-git --for=condition=ready --timeout=5m kubectl -n source-system delete -f ./config/testdata/helmchart-valuesfile - name: Setup Minio + env: + MINIO_VER: ${{ 'v6.3.1' }} run: | kubectl create ns minio helm repo add minio https://helm.min.io/ helm upgrade --wait -i minio minio/minio \ + --version $MINIO_VER \ --namespace minio \ --set accessKey=myaccesskey \ --set secretKey=mysecretkey \