diff options
author | Krzysztof Opasiak <k.opasiak@samsung.com> | 2021-07-29 20:43:50 +0000 |
---|---|---|
committer | Gerrit Code Review <gerrit@onap.org> | 2021-07-29 20:43:50 +0000 |
commit | 4e6d4867f5d12620b140ac795d62a74a34f2a8d0 (patch) | |
tree | 4d3c2bc882a8cc3ed0b8b3c04fc9f845417ed43a /kubernetes | |
parent | 7bcfb74d5ff19963bbfaa67fd7c3e5afe5c75414 (diff) | |
parent | 5026ae342fbbfd52e53fd7d6f1715a4fd8220863 (diff) |
Merge "[DCAE] Fix PRH aai lookup url config"
Diffstat (limited to 'kubernetes')
-rw-r--r-- | kubernetes/dcaegen2-services/components/dcae-prh/values.yaml | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/kubernetes/dcaegen2-services/components/dcae-prh/values.yaml b/kubernetes/dcaegen2-services/components/dcae-prh/values.yaml index d1f3f2a84a..5b608943ab 100644 --- a/kubernetes/dcaegen2-services/components/dcae-prh/values.yaml +++ b/kubernetes/dcaegen2-services/components/dcae-prh/values.yaml @@ -101,6 +101,8 @@ customEnvVars: value: "Basic `echo -n ${AAI_USER}:${AAI_PASSWORD} | base64`" # initial application configuration +# Configuration used for in-app substitution must be defined as $${undefined}{<parameter>} under applicationConfig +# inorder to get ${<parameter>} post envsubst (done part of dcae helm service-common templates) applicationConfig: dmaap.dmaapConsumerConfiguration.dmaapContentType: "application/json" dmaap.dmaapConsumerConfiguration.consumerId: "c12" @@ -118,7 +120,7 @@ applicationConfig: aai.aaiClientConfiguration.aaiIgnoreSslCertificateErrors: true aai.aaiClientConfiguration.aaiBasePath: "/aai/v12" aai.aaiClientConfiguration.aaiPnfPath: "/network/pnfs/pnf" - aai.aaiClientConfiguration.aaiServiceInstancePath: "/business/customers/customer/${customer}/service-subscriptions/service-subscription/${serviceType}/service-instances/service-instance/${serviceInstanceId}" + aai.aaiClientConfiguration.aaiServiceInstancePath: "/business/customers/customer/$${undefined}{customer}/service-subscriptions/service-subscription/$${undefined}{serviceType}/service-instances/service-instance/$${undefined}{serviceInstanceId}" aai.aaiClientConfiguration.aaiHeaders: X-FromAppId: "prh" X-TransactionId: "9999" |