Skip to content

Commit 47cef7f

Browse files
committed
Add openstreetmap auth as env vars
1 parent de94f43 commit 47cef7f

File tree

2 files changed

+6
-0
lines changed

2 files changed

+6
-0
lines changed

osm-seed/templates/web/web-deployment.yaml

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -170,6 +170,10 @@ spec:
170170
{{- end }}
171171
- name: PASSENGER_MAX_POOL_SIZE
172172
value: {{ .Values.web.env.PASSENGER_MAX_POOL_SIZE | default "6" | quote }}
173+
- name: OPENSTREETMAP_AUTH_ID
174+
value: {{ .Values.web.env.OPENSTREETMAP_AUTH_ID | default "" | quote }}
175+
- name: OPENSTREETMAP_AUTH_SECRET
176+
value: {{ .Values.web.env.OPENSTREETMAP_AUTH_SECRET | default "" | quote }}
173177
volumeMounts:
174178
- mountPath: /dev/shm
175179
name: shared-memory

osm-seed/values.yaml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -163,6 +163,8 @@ web:
163163
RAILS_STORAGE_BUCKET: osmseed-website-bucket
164164
EXTERNAL_CGIMAP: false
165165
PASSENGER_MAX_POOL_SIZE: 6
166+
OPENSTREETMAP_AUTH_ID: ""
167+
OPENSTREETMAP_AUTH_SECRET: ""
166168
resources:
167169
enabled: false
168170
requests:

0 commit comments

Comments
 (0)