From 77913745cd929cdc40da50264df2c6308c89480b Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?M=C3=A1rcio=20Fernandes?= Date: Sat, 22 Nov 2025 21:11:20 +0000 Subject: [PATCH] modified: .gitea/workflows/monitoring-deploy.yaml --- .gitea/workflows/monitoring-deploy.yaml | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/.gitea/workflows/monitoring-deploy.yaml b/.gitea/workflows/monitoring-deploy.yaml index 0d5f0d4..5bfd572 100644 --- a/.gitea/workflows/monitoring-deploy.yaml +++ b/.gitea/workflows/monitoring-deploy.yaml @@ -38,10 +38,12 @@ jobs: # secrets.LOKI_URL = https:///loki/api/v1/push - name: Deploy promtail shell: bash + env: + LOKI_URL: "${{ secrets.LOKI_URL }}" run: | # add repo helm repo add grafana https://grafana.github.io/helm-charts # Install & Upgrade helm upgrade --install promtail grafana/promtail --namespace monitoring \ - --values=./monitoring/promtail/values.yaml --set config.clients.url=${{ secrets.LOKI_URL }} --debug + --values=./monitoring/promtail/values.yaml --set config.clients.url=$LOKI_URL --debug