From e4eb9befed96ac2885561346b379727d65880065 Mon Sep 17 00:00:00 2001 From: Cedric Verstraeten Date: Fri, 29 Nov 2024 15:39:44 +0100 Subject: [PATCH] add ./base/ to minio-tenant --- .github/workflows/kind-cloud.yaml | 2 +- .github/workflows/kind.yaml | 2 +- .github/workflows/microk8s.yaml | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/kind-cloud.yaml b/.github/workflows/kind-cloud.yaml index b82e5fb..54fd009 100644 --- a/.github/workflows/kind-cloud.yaml +++ b/.github/workflows/kind-cloud.yaml @@ -45,7 +45,7 @@ jobs: id: install-minio run: | git clone --depth 1 --branch v6.0.1 https://github.com/minio/operator.git && kubectl apply -k operator/ - kubectl apply -f minio-tenant-base.yaml + kubectl apply -f ./base/minio-tenant-base.yaml echo "Sleeping for 60 seconds, give time for the operator/tenant to create the CRDs" && sleep 60 kubectl get po -A -o wide kubectl get po -A -o wide | grep myminio-pool-0-0 | awk '{print $3}' | grep -q '2/2' && echo "myminio-pool-0-0 pod is running with status 2/2" || (echo "myminio-pool-0-0 pod is not running with status 2/2" && exit 1) diff --git a/.github/workflows/kind.yaml b/.github/workflows/kind.yaml index 7a496db..4655194 100644 --- a/.github/workflows/kind.yaml +++ b/.github/workflows/kind.yaml @@ -36,7 +36,7 @@ jobs: id: install-minio run: | git clone --depth 1 --branch v6.0.1 https://github.com/minio/operator.git && kubectl apply -k operator/ - kubectl apply -f minio-tenant-base.yaml + kubectl apply -f ./base/minio-tenant-base.yaml echo "Sleeping for 60 seconds, give time for the operator/tenant to create the CRDs" && sleep 60 kubectl get po -A -o wide kubectl get po -A -o wide | grep myminio-pool-0-0 | awk '{print $3}' | grep -q '2/2' && echo "myminio-pool-0-0 pod is running with status 2/2" || (echo "myminio-pool-0-0 pod is not running with status 2/2" && exit 1) diff --git a/.github/workflows/microk8s.yaml b/.github/workflows/microk8s.yaml index 7cfa192..7aac88c 100644 --- a/.github/workflows/microk8s.yaml +++ b/.github/workflows/microk8s.yaml @@ -35,7 +35,7 @@ jobs: id: install-minio run: | git clone --depth 1 --branch v6.0.1 https://github.com/minio/operator.git && kubectl apply -k operator/ - kubectl apply -f minio-tenant-base.yaml + kubectl apply -f ./base/minio-tenant-base.yaml echo "Sleeping for 60 seconds, give time for the operator/tenant to create the CRDs" && sleep 60 kubectl get po -A -o wide kubectl get po -A -o wide | grep myminio-pool-0-0 | awk '{print $3}' | grep -q '2/2' && echo "myminio-pool-0-0 pod is running with status 2/2" || (echo "myminio-pool-0-0 pod is not running with status 2/2" && exit 1)