From 47cef7f5ef2bbe6ed14928b271d3a01244df7c53 Mon Sep 17 00:00:00 2001 From: Rub21 Date: Wed, 28 May 2025 09:13:26 -0500 Subject: [PATCH] Add openstreetmap auth as env vars --- osm-seed/templates/web/web-deployment.yaml | 4 ++++ osm-seed/values.yaml | 2 ++ 2 files changed, 6 insertions(+) diff --git a/osm-seed/templates/web/web-deployment.yaml b/osm-seed/templates/web/web-deployment.yaml index ffccd517..3ac7842b 100644 --- a/osm-seed/templates/web/web-deployment.yaml +++ b/osm-seed/templates/web/web-deployment.yaml @@ -170,6 +170,10 @@ spec: {{- end }} - name: PASSENGER_MAX_POOL_SIZE value: {{ .Values.web.env.PASSENGER_MAX_POOL_SIZE | default "6" | quote }} + - name: OPENSTREETMAP_AUTH_ID + value: {{ .Values.web.env.OPENSTREETMAP_AUTH_ID | default "" | quote }} + - name: OPENSTREETMAP_AUTH_SECRET + value: {{ .Values.web.env.OPENSTREETMAP_AUTH_SECRET | default "" | quote }} volumeMounts: - mountPath: /dev/shm name: shared-memory diff --git a/osm-seed/values.yaml b/osm-seed/values.yaml index 36337ade..4315998d 100644 --- a/osm-seed/values.yaml +++ b/osm-seed/values.yaml @@ -163,6 +163,8 @@ web: RAILS_STORAGE_BUCKET: osmseed-website-bucket EXTERNAL_CGIMAP: false PASSENGER_MAX_POOL_SIZE: 6 + OPENSTREETMAP_AUTH_ID: "" + OPENSTREETMAP_AUTH_SECRET: "" resources: enabled: false requests: