Skip to content

Commit

Permalink
fix: missing quotes
Browse files Browse the repository at this point in the history
  • Loading branch information
eschrewe committed Jun 27, 2024
1 parent 4445f37 commit 9dce084
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions charts/puris/templates/backend-deployment.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -175,16 +175,16 @@ spec:
- name: PURIS_ERPADAPTER_URL
value: "{{ .Values.backend.puris.erpadapter.url}}"
- name: PURIS_ERPADAPTER_AUTHKEY
value: {{ .Values.backend.puris.erpadapter.authkey }}
value: "{{ .Values.backend.puris.erpadapter.authkey }}"
- name: PURIS_ERPADAPTER_AUTHSECRET
valueFrom:
secretKeyRef:
name: "{{ .Values.backend.puris.existingSecret }}"
key: "puris-erpadapter-authsecret"
- name: PURIS_ERPADAPTER_TIMELIMIT
value: {{ .Values.backend.puris.erpadapter.timelimit }}
value: "{{ .Values.backend.puris.erpadapter.timelimit }}"
- name: PURIS_ERPADAPTER_REFRESHINTERVAL
value: {{ .Values.backend.puris.erpadapter.refreshinterval }}
value: "{{ .Values.backend.puris.erpadapter.refreshinterval }}"

######################################
## Additional environment variables ##
Expand Down

0 comments on commit 9dce084

Please sign in to comment.