diff options
author | Sylvain Desbureaux <sylvain.desbureaux@orange.com> | 2018-06-01 14:28:39 +0200 |
---|---|---|
committer | Mandeep Khinda <mandeep.khinda@amdocs.com> | 2018-06-05 22:46:27 +0000 |
commit | 33f8367b6506bf1df00be1caecfad3dfc69d00ab (patch) | |
tree | 38393b7aa682a1805f2be6530e11242e187138e9 /kubernetes/nbi/templates | |
parent | c15fcdd43fc9e33cdb6c9be6050dd7bb0b838382 (diff) |
Fix bad values for configuring NBI.
PS-3 MK: the sample value for openStackVNFTenantId is being
interpolated as a number because it is all numeric.
Going with the quoting it at the template level.
Changing the value to 12345abcde probably would work too.
Change-Id: I2f81430e56f465543d3701a2d8cd4b562e7e987d
Issue-ID: OOM-1116
Signed-off-by: Sylvain Desbureaux <sylvain.desbureaux@orange.com>
Signed-off-by: Mandeep Khinda <mandeep.khinda@amdocs.com>
Diffstat (limited to 'kubernetes/nbi/templates')
-rw-r--r-- | kubernetes/nbi/templates/deployment.yaml | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/kubernetes/nbi/templates/deployment.yaml b/kubernetes/nbi/templates/deployment.yaml index 06572492fd..57bdf341f2 100644 --- a/kubernetes/nbi/templates/deployment.yaml +++ b/kubernetes/nbi/templates/deployment.yaml @@ -70,7 +70,7 @@ spec: - name: ONAP_LCPCLOUDREGIONID value: {{ .Values.config.openStackRegion }} - name: ONAP_TENANTID - value: {{ .Values.config.openStackServiceTenantName }} + value: {{ .Values.config.openStackVNFTenantId | quote }} - name: ONAP_CLOUDOWNER value: {{ .Values.config.cloudOwner }} - name: NBI_URL |