Skip to content

Commit

Permalink
Fix envar escape as boolean
Browse files Browse the repository at this point in the history
  • Loading branch information
wpjunior committed Jun 7, 2024
1 parent f81ce13 commit d59908b
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion charts/acl-api/Chart.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -2,5 +2,5 @@ apiVersion: v2
name: acl-api
description: The API of Tsuru/ACL
type: application
version: 0.0.3
version: 0.0.4
appVersion: 0.1.7
4 changes: 2 additions & 2 deletions charts/acl-api/templates/deployment.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -82,9 +82,9 @@ spec:
- name: PORT
value: {{ .Values.api.port | quote }}
- name: SYNC_DISABLED
value: {{ .Values.api.syncDisabled }}
value: "{{ .Values.api.syncDisabled }}"
- name: SYNC_INTERVAL
value: {{ .Values.api.syncInterval }}
value: "{{ .Values.api.syncInterval }}"
tty: true
imagePullPolicy: {{ .Values.image.pullPolicy }}
ports:
Expand Down

0 comments on commit d59908b

Please sign in to comment.