Skip to content

Commit

Permalink
Unquotes redis port (#13)
Browse files Browse the repository at this point in the history
  • Loading branch information
joerivrij authored Jun 26, 2023
1 parent a89cf26 commit 56a4529
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion helm/ri-zgw/charts/brc/templates/deployment.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -133,7 +133,7 @@ spec:
- name: NOTIFICATIONS_DISABLED
value: {{ .Values.global.config.notificationsDisabled | quote }}
- name: REDIS_CACHE
value: {{ .Values.global.redis.name }}:{{ .Values.global.redis.service.port | quote }}
value: {{ .Values.global.redis.name }}:{{ .Values.global.redis.service.port }}
- name: DJANGO_SETTINGS_MODULE
value: {{.Values.service.name}}.conf.docker
- name: ALLOWED_HOSTS
Expand Down
2 changes: 1 addition & 1 deletion helm/ri-zgw/charts/drc/templates/deployment.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -131,7 +131,7 @@ spec:
- name: DRC_BASE_URL
value: {{ .Values.config.baseAddress }}
- name: REDIS_CACHE
value: {{ .Values.global.redis.name }}:{{ .Values.global.redis.service.port | quote }}
value: {{ .Values.global.redis.name }}:{{ .Values.global.redis.service.port }}
- name: DJANGO_SETTINGS_MODULE
value: {{.Values.service.name}}.conf.docker
- name: NOTIFICATIONS_DISABLED
Expand Down
2 changes: 1 addition & 1 deletion helm/ri-zgw/charts/zrc/templates/deployment.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -131,7 +131,7 @@ spec:
- name: ZRC_BASE_URL
value: {{ .Values.config.baseAddress }}
- name: CACHE_DEFAULT
value: {{ .Values.global.redis.name }}:{{ .Values.global.redis.service.port | quote }}
value: {{ .Values.global.redis.name }}:{{ .Values.global.redis.service.port }}
- name: DJANGO_SETTINGS_MODULE
value: {{.Values.service.name}}.conf.docker
- name: ALLOWED_HOSTS
Expand Down

0 comments on commit 56a4529

Please sign in to comment.