diff options
author | Brian Freeman <bf1936@att.com> | 2018-05-14 13:49:03 -0500 |
---|---|---|
committer | Brian Freeman <bf1936@att.com> | 2018-05-14 13:54:46 -0500 |
commit | 461e346854ed3d0b8d24186a897f640cd71c9d63 (patch) | |
tree | f1ee7ce129f7215d724f4dbba23bd2afda81b988 /resources | |
parent | 7c131efcf474953ca33cdce34031b14c2c1cd741 (diff) |
Fix robot preload
Issue-ID: OOM-1079
Change-Id: Ie45882ce193e73b91c13c03ef1a3fdc731002124
Signed-off-by: Brian Freeman <bf1936@att.com>
Diffstat (limited to 'resources')
-rwxr-xr-x | resources/config/eteshare/config/integration_preload_parameters.py | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/resources/config/eteshare/config/integration_preload_parameters.py b/resources/config/eteshare/config/integration_preload_parameters.py index 502d8fc..17f33fc 100755 --- a/resources/config/eteshare/config/integration_preload_parameters.py +++ b/resources/config/eteshare/config/integration_preload_parameters.py @@ -2,15 +2,15 @@ GLOBAL_PRELOAD_PARAMETERS = { # heat template parameter values common to all heat template continaing these parameters "defaults" : { 'key_name' : 'vfw_key${uuid}', - "pub_key" : "${pub_key}", + "pub_key" : "{{ .Values.vnfPubKey }}", "repo_url_blob" : "https://nexus.onap.org/content/repositories/raw", "repo_url_artifacts" : "https://nexus.onap.org/content/groups/staging", "demo_artifacts_version" : "${GLOBAL_INJECTED_ARTIFACTS_VERSION}", "onap_private_net_id" : "${GLOBAL_INJECTED_NETWORK}", "onap_private_subnet_id" : "{{ .Values.openStackPrivateSubnetId }}", "onap_private_net_cidr" : "{{ .Values.openStackPrivateNetCidr }}", - "dcae_collector_ip" : "${dcae_collector_ip}", - "dcae_collector_port" : "8080", + "dcae_collector_ip" : "{{ .Values.dcaeCollectorIp }}", + "dcae_collector_port" : "30235", "public_net_id" : "${GLOBAL_INJECTED_PUBLIC_NET_ID}", "cloud_env" : "${GLOBAL_INJECTED_CLOUD_ENV}", "install_script_version" : "${GLOBAL_INJECTED_SCRIPT_VERSION}", |