install prometheus

This commit is contained in:
Cedric Verstraeten
2024-09-07 18:30:53 +02:00
parent 4d7c9b42bd
commit 56178d256b

View File

@@ -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: |