Skip to content

Add openstreetmap auth as env vars #369

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 2 commits into from
Jul 2, 2025
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 4 additions & 0 deletions osm-seed/templates/web/web-deployment.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
2 changes: 2 additions & 0 deletions osm-seed/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -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:
Expand Down
Loading