diff options
author | 2018-04-12 11:41:05 +0000 | |
---|---|---|
committer | 2018-04-12 11:41:05 +0000 | |
commit | 52293c369364f464be90d2448772b4ccc6b97ff8 (patch) | |
tree | 5ab34f5e0062b6d252a953d23b23962d2567e7a2 /kubernetes/vfc/charts/vfc-multivim-proxy | |
parent | 06ad9b7ab0cdecb9af73cbf7e2ac9684039b536d (diff) | |
parent | 08c3f456393436d42d95d43503ced431a10031e3 (diff) |
Merge "VFC Communication fails because MSB service name"
Diffstat (limited to 'kubernetes/vfc/charts/vfc-multivim-proxy')
-rw-r--r-- | kubernetes/vfc/charts/vfc-multivim-proxy/templates/deployment.yaml | 2 | ||||
-rw-r--r-- | kubernetes/vfc/charts/vfc-multivim-proxy/values.yaml | 4 |
2 files changed, 2 insertions, 4 deletions
diff --git a/kubernetes/vfc/charts/vfc-multivim-proxy/templates/deployment.yaml b/kubernetes/vfc/charts/vfc-multivim-proxy/templates/deployment.yaml index bf7a1c9e94..ba33ec587d 100644 --- a/kubernetes/vfc/charts/vfc-multivim-proxy/templates/deployment.yaml +++ b/kubernetes/vfc/charts/vfc-multivim-proxy/templates/deployment.yaml @@ -68,7 +68,7 @@ spec: periodSeconds: {{ .Values.readiness.periodSeconds }} env: - name: MSB_ADDR - value: "{{ .Release.Name }}-msb-iag.{{ include "common.namespace" . }}:{{ .Values.config.msbPort }}" + value: "{{ .Values.global.config.msbServiceName }}:{{ .Values.global.config.msbPort }}" resources: {{ toYaml .Values.resources | indent 12 }} {{- if .Values.nodeSelector }} diff --git a/kubernetes/vfc/charts/vfc-multivim-proxy/values.yaml b/kubernetes/vfc/charts/vfc-multivim-proxy/values.yaml index 5e6b56e558..943b051f8c 100644 --- a/kubernetes/vfc/charts/vfc-multivim-proxy/values.yaml +++ b/kubernetes/vfc/charts/vfc-multivim-proxy/values.yaml @@ -35,9 +35,7 @@ pullPolicy: Always debugEnabled: false # application configuration -# Example: -config: - msbPort: 80 +config: {} # default number of instances replicaCount: 1 |