Skip to content

Commit

Permalink
🐛 fix(chart): use tpl function
Browse files Browse the repository at this point in the history
To allow reading of another value
  • Loading branch information
kiyo-s committed Oct 27, 2024
1 parent d79cfce commit 5c8b6d3
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions chart/templates/like-service.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -63,9 +63,9 @@ spec:
- name: USER_AUTH_SERVICE_ADDRESS
value: {{ quote .Values.likeService.deployment.container.env.USER_AUTH_SERVICE_ADDRESS }}
- name: DB_HOST
value: {{ quote .Values.likeService.deployment.container.env.DB_HOST }}
value: {{ tpl .Values.likeService.deployment.container.env.DB_HOST . }}
- name: DB_PORT
value: {{ quote .Values.likeService.deployment.container.env.DB_PORT }}
value: {{ tpl .Values.likeService.deployment.container.env.DB_PORT . }}
- name: MARIADB_PASSWORD
valueFrom:
secretKeyRef:
Expand Down

0 comments on commit 5c8b6d3

Please sign in to comment.