ingress for monitoring

This commit is contained in:
2026-06-08 15:35:03 +02:00
parent cad03104f7
commit ff70f82ca8
2 changed files with 12 additions and 2 deletions
+9 -1
View File
@@ -79,10 +79,18 @@ jobs:
if: ${{ inputs.service == 'all' || inputs.service == 'monitoring' }}
run: |
kubectl create namespace monitoring --dry-run=client -o yaml | kubectl apply -f -
- name: Create Grafana OAuth secret
if: ${{ inputs.service == 'all' || inputs.service == 'monitoring' }}
run: |
kubectl create secret generic grafana-oauth-secret \
-n monitoring \
--from-literal=GF_AUTH_GENERIC_OAUTH_CLIENT_SECRET="${{ secrets.GRAFANA_CLIENT_SECRET }}" \
--dry-run=client -o yaml | kubectl apply -f -
- name: Create oauth2-proxy secrets
if: ${{ inputs.service == 'all' || inputs.service == 'monitoring' }}
run: |
kubectl create secret generic oauth2-proxy-prometheus \
-n monitoring \
--from-literal=client-id=prometheus \