Skip to content

Commit ab8c64e

Browse files
authored
add environment variable secrets to multiplayer service (#255)
1 parent 5b65c24 commit ab8c64e

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

charts/retool/Chart.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ apiVersion: v2
22
name: retool
33
description: A Helm chart for Kubernetes
44
type: application
5-
version: 6.8.4
5+
version: 6.8.5
66
maintainers:
77
- name: Retool Engineering
88
email: engineering+helm@retool.com

charts/retool/templates/deployment_multiplayer_ws.yaml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -148,16 +148,16 @@ spec:
148148
key: jwt-secret
149149
{{- end }}
150150
{{- range $key, $value := .Values.multiplayer.environmentVariables }}
151+
- name: "{{ $key }}"
152+
value: "{{ $value }}"
153+
{{- end }}
151154
{{- range .Values.environmentSecrets }}
152155
- name: {{ .name }}
153156
valueFrom:
154157
secretKeyRef:
155158
name: {{ .secretKeyRef.name }}
156159
key: {{ .secretKeyRef.key }}
157160
{{- end }}
158-
- name: "{{ $key }}"
159-
value: "{{ $value }}"
160-
{{- end }}
161161
ports:
162162
- containerPort: 3001
163163
name: http-server

0 commit comments

Comments
 (0)