add monitoring

This commit is contained in:
2026-06-08 11:50:10 +02:00
parent f199ec7326
commit 6d506936d7
+12
View File
@@ -13,6 +13,7 @@ on:
- keycloak
- keycloak-db
- nginx
- monitoring
jobs:
deploy:
@@ -73,3 +74,14 @@ jobs:
--create-namespace \
--values helm/keycloak/values.yaml \
--wait
- name: Deploy Monitoring
if: ${{ inputs.service == 'all' || inputs.service == 'monitoring' }}
run: |
helm repo add prometheus-community https://prometheus-community.github.io/helm-charts
helm repo update
helm upgrade --install monitoring prometheus-community/kube-prometheus-stack \
--namespace monitoring \
--create-namespace \
--values helm/monitoring/values.yaml \
--wait