diff options
author | Timoney, Dan (dt5972) <dtimoney@att.com> | 2019-07-11 14:54:28 -0400 |
---|---|---|
committer | Timoney, Dan (dt5972) <dtimoney@att.com> | 2019-07-11 14:54:28 -0400 |
commit | 6c656315e38ee601208108c16a09e3e8e45d8c45 (patch) | |
tree | 1a49d9ae63dbdbede9210ba5b74f774c4c1aa5de /kubernetes | |
parent | fe8c46d5556541c90600e4f2903e63ac783addf0 (diff) |
Add quotes to force string conversion
2 environment values passed in cds-ui helm chart contain values that need
to be enclosed in quotes to force conversion to string. Without that, helm
deploy fails due to unexpected value.
Change-Id: I8bea63e2cc0b5e52f581c223056b5b1d8f32d435
Issue-ID: CCSDK-1476
Signed-off-by: Timoney, Dan (dt5972) <dtimoney@att.com>
Diffstat (limited to 'kubernetes')
-rw-r--r-- | kubernetes/cds/charts/cds-ui/templates/deployment.yaml | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/kubernetes/cds/charts/cds-ui/templates/deployment.yaml b/kubernetes/cds/charts/cds-ui/templates/deployment.yaml index 021a6a9425..562cd54b31 100644 --- a/kubernetes/cds/charts/cds-ui/templates/deployment.yaml +++ b/kubernetes/cds/charts/cds-ui/templates/deployment.yaml @@ -51,7 +51,7 @@ spec: - name: HOST value: 0.0.0.0 - name: APP_ACTION_DEPLOY_BLUEPRINT_GRPC_ENABLED - value: {{ .Values.config.app.action.deployBlueprint.grpcEnabled }} + value: "{{ .Values.config.app.action.deployBlueprint.grpcEnabled }}" - name: API_BLUEPRINT_CONTROLLER_HTTP_BASE_URL value: {{ .Values.config.api.controller.http.baseUrl }} - name: API_BLUEPRINT_CONTROLLER_HTTP_AUTH_TOKEN @@ -63,7 +63,7 @@ spec: - name: API_BLUEPRINT_PROCESSOR_GRPC_HOST value: {{ .Values.config.api.processor.grpc.host }} - name: API_BLUEPRINT_PROCESSOR_GRPC_PORT - value: {{ .Values.config.api.processor.grpc.port }} + value: "{{ .Values.config.api.processor.grpc.port }}" - name: API_BLUEPRINT_PROCESSOR_GRPC_AUTH_TOKEN value: {{ .Values.config.api.processor.grpc.authToken }} readinessProbe: |