From de233937c1e95cb492a34d26b1134a5bed857a54 Mon Sep 17 00:00:00 2001 From: Marcin Maciaszczyk Date: Tue, 17 Dec 2024 15:30:09 +0100 Subject: [PATCH] reformat code --- catalogs/data/dagster/helm/dagster.yaml.liquid | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/catalogs/data/dagster/helm/dagster.yaml.liquid b/catalogs/data/dagster/helm/dagster.yaml.liquid index 1a4a0024..9fb98a72 100644 --- a/catalogs/data/dagster/helm/dagster.yaml.liquid +++ b/catalogs/data/dagster/helm/dagster.yaml.liquid @@ -1,20 +1,20 @@ {% raw %} - { % assign imports_dagster_key = 'dagster-' | append: configuration.cluster % } +{% assign imports_dagster_key = 'dagster-' | append: configuration.cluster %} dagsterWebserver: annotations: security.plural.sh/oauth-env-secret: dagster-proxy-config - { % if configuration[ "basicAuth" ] % } + {% if configuration["basicAuth"] %} security.plural.sh/htpasswd-secret: httpaswd-users - { % endif % } + {% endif %} labels: security.plural.sh/inject-oauth-sidecar: "true" postgresql: enabled: false - postgresqlHost: { { imports[ imports_dagster_key ].postgres_host } } + postgresqlHost: {{ imports[imports_dagster_key].postgres_host }} postgresqlUsername: dagster - postgresqlPassword: { { imports[ imports_dagster_key ].postgres_password } } + postgresqlPassword: {{ imports[imports_dagster_key].postgres_password }} postgresqlDatabase: dagster postgresqlParams: sslmode: require @@ -23,13 +23,13 @@ computeLogManager: type: S3ComputeLogManager config: s3ComputeLogManager: - bucket: { { configuration.bucket } } + bucket: {{ configuration.bucket }} ingress: enabled: true ingressClassName: nginx dagsterWebserver: - host: { { configuration.hostname } } + host: {{ configuration.hostname }} tls: enabled: true secretName: dagster-tls