Skip to content

Commit

Permalink
jsonnet: fix unicode quotes in jsonnet to avoid tools failing to pars…
Browse files Browse the repository at this point in the history
…e 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.
  • Loading branch information
sandeepsukhani authored Jan 22, 2024
1 parent 390f04d commit b581db0
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion production/ksonnet/loki/gateway.libsonnet
Original file line number Diff line number Diff line change
Expand Up @@ -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;
Expand Down

0 comments on commit b581db0

Please sign in to comment.