diff options
author | Piotr Darosz <piotr.darosz@nokia.com> | 2018-10-05 09:57:42 +0200 |
---|---|---|
committer | Piotr Darosz <piotr.darosz@nokia.com> | 2018-10-05 11:04:10 +0200 |
commit | 2460a794eaf4deaa9f1dd1978c34b156a7d7f466 (patch) | |
tree | 9503951dfa76b52a0df5c6af937f9c63efffc52a /kubernetes/vid | |
parent | e74509ca3d7fcefdd79117241ad6704c957e5572 (diff) |
USe HTTP for SO endpoint in VID
Correct the protocol and endpoint for SO API as HTTPS is not supported
Change-Id: Ib84e9ab28ae3810141120572246d7a4a6b2d91a6
Issue-ID: VID-320
Signed-off-by: Piotr Darosz <piotr.darosz@nokia.com>
Diffstat (limited to 'kubernetes/vid')
-rw-r--r-- | kubernetes/vid/templates/deployment.yaml | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/kubernetes/vid/templates/deployment.yaml b/kubernetes/vid/templates/deployment.yaml index 9a23c1d7fc..4c635facd2 100644 --- a/kubernetes/vid/templates/deployment.yaml +++ b/kubernetes/vid/templates/deployment.yaml @@ -79,7 +79,7 @@ spec: - name: VID_ECOMP_SHARED_CONTEXT_REST_URL value: http://portal-app.{{ include "common.namespace" . }}:{{ .Values.config.onapport }}/ONAPPORTAL/context - name: VID_MSO_SERVER_URL - value: https://so.{{ include "common.namespace" . }}:{{ .Values.config.msoport }} + value: http://so.{{ include "common.namespace" . }}:{{ .Values.config.msoport }}/onap/so/infra - name: VID_MSO_PASS value: "{{ .Values.config.vidmsopass }}" - name: MSO_DME2_SERVER_URL |