diff --git a/charts/acl-api/Chart.yaml b/charts/acl-api/Chart.yaml index 853e3cf..f5b47a4 100644 --- a/charts/acl-api/Chart.yaml +++ b/charts/acl-api/Chart.yaml @@ -2,5 +2,5 @@ apiVersion: v2 name: acl-api description: The API of Tsuru/ACL type: application -version: 0.0.2 -appVersion: 0.1.6 +version: 0.0.3 +appVersion: 0.1.7 diff --git a/charts/acl-api/templates/deployment.yaml b/charts/acl-api/templates/deployment.yaml index 3736799..1e985b6 100644 --- a/charts/acl-api/templates/deployment.yaml +++ b/charts/acl-api/templates/deployment.yaml @@ -81,6 +81,10 @@ spec: key: tsuru_token - name: PORT value: {{ .Values.api.port | quote }} + - name: SYNC_DISABLED + value: {{ .Values.api.syncDisabled }} + - name: SYNC_INTERVAL + value: {{ .Values.api.syncInterval }} tty: true imagePullPolicy: {{ .Values.image.pullPolicy }} ports: diff --git a/charts/acl-api/values.yaml b/charts/acl-api/values.yaml index ff2c1b1..720ff0b 100644 --- a/charts/acl-api/values.yaml +++ b/charts/acl-api/values.yaml @@ -101,4 +101,6 @@ api: auth: false storage: false dbaasMongodbEndpoint: false - tsuruHost: "http://localhost:8080" \ No newline at end of file + tsuruHost: "http://localhost:8080" + syncDisabled: true + syncInterval: "5m" \ No newline at end of file