From 6ac0c307d45978cc2800ed19bfb2d177491704d8 Mon Sep 17 00:00:00 2001 From: evanpelle Date: Mon, 21 Jul 2025 16:28:08 -0700 Subject: [PATCH] Pass new env vars for grafana cloud (#1520) ## Description: Using new OTEL env vars for grafana cloud ## Please complete the following: - [x] I have added screenshots for all UI updates - [x] I process any text displayed to the user through translateText() and I've added it to the en.json file - [x] I have added relevant tests to the test directory - [x] I confirm I have thoroughly tested these changes and take full responsibility for any bugs introduced - [x] I have read and accepted the CLA aggreement (only required once). ## Please put your Discord username so you can be contacted if a bug or regression is found: evan --- deploy.sh | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) diff --git a/deploy.sh b/deploy.sh index 031337ec1..c71479704 100755 --- a/deploy.sh +++ b/deploy.sh @@ -178,9 +178,11 @@ R2_BUCKET=$R2_BUCKET CF_API_TOKEN=$CF_API_TOKEN DOMAIN=$DOMAIN SUBDOMAIN=$SUBDOMAIN -OTEL_USERNAME=$OTEL_USERNAME -OTEL_PASSWORD=$OTEL_PASSWORD -OTEL_ENDPOINT=$OTEL_ENDPOINT +OTEL_USERNAME=$OTEL_USERNAME # TODO: remove +OTEL_PASSWORD=$OTEL_PASSWORD # TODO: remove +OTEL_ENDPOINT=$OTEL_ENDPOINT # TODO: remove +OTEL_EXPORTER_OTLP_ENDPOINT=$OTEL_EXPORTER_OTLP_ENDPOINT +OTEL_AUTH_HEADER=$OTEL_AUTH_HEADER BASIC_AUTH_USER=$BASIC_AUTH_USER BASIC_AUTH_PASS=$BASIC_AUTH_PASS EOL