diff --git a/.github/workflows/kind-cloud.yaml b/.github/workflows/kind-cloud.yaml index ab01f36..661d711 100644 --- a/.github/workflows/kind-cloud.yaml +++ b/.github/workflows/kind-cloud.yaml @@ -73,6 +73,13 @@ jobs: # echo "Sleeping for 30 seconds, give time for the helm chart to create the pods" && sleep 30 # kubectl get pods -A -o wide # kubectl get pods -A -o wide | grep agent | awk '{print $3}' | grep -q '1/1' && echo "kerberos-agent pod is running with status 1/1" || (echo "kerberos-agent pod is not running with status 1/1" && exit 1) + - name: Install prometheus operator + id: install-prometheus-operator + run: | + kubectl apply -f https://raw.githubusercontent.com/prometheus-operator/prometheus-operator/v0.48.1/bundle.yaml + echo "Sleeping for 60 seconds, give time for the operator to create the CRDs" && sleep 60 + kubectl get crd + kubectl get po -A -o wides - name: Install Kerberos Hub helm chart id: install-kerberos-hub run: |