From b581db0415421c5f11b98fadfef64721f59122f8 Mon Sep 17 00:00:00 2001 From: Sandeep Sukhani Date: Mon, 22 Jan 2024 15:34:57 +0530 Subject: [PATCH] jsonnet: fix unicode quotes in jsonnet to avoid tools failing to parse it properly (#11716) **What this PR does / why we need it**: We have a linter in place in our internal deployment tooling to catch the usage of Unicode quotes because it has caused some issues due to shells/tooling not recognizing them. The linter has caught one such instance in the jsonnet in the Loki repo, which is fixed in this PR. --- production/ksonnet/loki/gateway.libsonnet | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/production/ksonnet/loki/gateway.libsonnet b/production/ksonnet/loki/gateway.libsonnet index b5b1eb2401ca..d8c923a3bd03 100644 --- a/production/ksonnet/loki/gateway.libsonnet +++ b/production/ksonnet/loki/gateway.libsonnet @@ -48,7 +48,7 @@ local k = import 'ksonnet-util/kausal.libsonnet'; server { listen 80; - auth_basic “Prometheus”; + auth_basic "Prometheus"; auth_basic_user_file /etc/nginx/secrets/.htpasswd; proxy_set_header X-Scope-OrgID %(gateway_tenant_id)s;