diff options
author | Sylvain Desbureaux <sylvain.desbureaux@orange.com> | 2021-11-06 16:51:36 +0000 |
---|---|---|
committer | Gerrit Code Review <gerrit@onap.org> | 2021-11-06 16:51:36 +0000 |
commit | 3894a3dc7110b9202186e0bb38c209a5ba51c86b (patch) | |
tree | 97286b190b42babd5e663847387389408da5bb94 /kubernetes | |
parent | 59fb4c74095cca9957220d8a5cb28ff24f899ec0 (diff) | |
parent | 0f9e4238361b4971b3c4ef6aab41a4e288e6a010 (diff) |
Merge "[CCSDK] Workaround for naming service host name verification issue" into istanbul
Diffstat (limited to 'kubernetes')
-rw-r--r-- | kubernetes/common/network-name-gen/templates/deployment.yaml | 2 | ||||
-rw-r--r-- | kubernetes/common/network-name-gen/values.yaml | 3 |
2 files changed, 4 insertions, 1 deletions
diff --git a/kubernetes/common/network-name-gen/templates/deployment.yaml b/kubernetes/common/network-name-gen/templates/deployment.yaml index 8ca5374bbd..9bdf19c7ec 100644 --- a/kubernetes/common/network-name-gen/templates/deployment.yaml +++ b/kubernetes/common/network-name-gen/templates/deployment.yaml @@ -93,6 +93,8 @@ spec: value: "{{ .Values.config.aaiUri }}" - name: AAI_AUTH value: "{{ .Values.config.aaiAuth }}" + - name: DISABLE_HOST_VERIFICATION + value: "{{ .Values.config.disableHostVerification }}" volumeMounts: - name: certs mountPath: /opt/etc/config/aai_keystore diff --git a/kubernetes/common/network-name-gen/values.yaml b/kubernetes/common/network-name-gen/values.yaml index c1717c3d24..6937facf6f 100644 --- a/kubernetes/common/network-name-gen/values.yaml +++ b/kubernetes/common/network-name-gen/values.yaml @@ -74,7 +74,7 @@ mariadb-init: # Application configuration defaults. ################################################################# # application image -image: onap/ccsdk-apps-ms-neng:1.2.0 +image: onap/ccsdk-apps-ms-neng:1.2.1 pullPolicy: IfNotPresent # application configuration @@ -90,6 +90,7 @@ config: polUrl: https://policy-xacml-pdp:6969/policy/pdpx/v1/decision polEnv: TEST polReqId: xx + disableHostVerification: true aaiCertPass: changeit aaiCertPath: /opt/etc/config/aai_keystore aaiAuth: QUFJOkFBSQ== |