diff options
author | 2018-05-24 08:23:14 -0700 | |
---|---|---|
committer | 2018-05-29 22:21:12 -0700 | |
commit | 3a63d430a872be94813261168a48033837e916ae (patch) | |
tree | e3243dd5eb04c8541ee44c9158ffe41c1b93ce77 /kubernetes/oof/charts/oof-has/resources/config/conductor.conf | |
parent | 7a1d526b8a1eab6cbb7cc45248b44c52d5979077 (diff) |
Fix OOF configuration for connectivity
Update AAI and add Multicloud section
to configuration to fix connectivity
issues and also update deployment
template
Issue-ID: INT-144
Change-Id: I7c9d4177613bc6584d95d6bef359a5455ca6acec
Signed-off-by: Ritu Sood <ritu.sood@intel.com>
Diffstat (limited to 'kubernetes/oof/charts/oof-has/resources/config/conductor.conf')
-rwxr-xr-x | kubernetes/oof/charts/oof-has/resources/config/conductor.conf | 45 |
1 files changed, 40 insertions, 5 deletions
diff --git a/kubernetes/oof/charts/oof-has/resources/config/conductor.conf b/kubernetes/oof/charts/oof-has/resources/config/conductor.conf index 4d32deea33..588b9360ba 100755 --- a/kubernetes/oof/charts/oof-has/resources/config/conductor.conf +++ b/kubernetes/oof/charts/oof-has/resources/config/conductor.conf @@ -149,22 +149,29 @@ complex_cache_refresh_interval = 60 # Base URL for A&AI, up to and not including the version, and without a # trailing slash. (string value) -server_url = https://oof.api.simpledemo.onap.org:8443/aai +server_url = https://{{.Values.config.aai.serviceName}}.{{ include "common.namespace" . }}:{{.Values.config.aai.port}}/aai # The version of A&AI in v# format. (string value) -server_url_version = v11 +server_url_version = v13 # SSL/TLS certificate file in pem format. This certificate must be registered # with the A&AI endpoint. (string value) -certificate_file = /usr/local/bin/aai_cert.cer +certificate_file = # Private Certificate Key file in pem format. (string value) -certificate_key_file = /usr/local/bin/aai_key.key +certificate_key_file = # Certificate Authority Bundle file in pem format. Must contain the appropriate # trust chain for the Certificate file. (string value) #certificate_authority_bundle_file = /opt/app/conductor/etc/certs/ca_bundle.pem -certificate_authority_bundle_file =/usr/local/bin/bundle.pem +certificate_authority_bundle_file =/usr/local/bin/AAF_RootCA.cer + +# Basic Authentication Username (string value) +username = OOF + +# Basic Authentication Password (string value) +password = OOF + [api] @@ -355,3 +362,31 @@ concurrent = true [reservation] concurrent = true + +[multicloud] + +# +# From conductor +# + +# Base URL for Multicloud without a trailing slash. (string value) +server_url = http://{{.Values.config.msb.serviceName}}:{{.Values.config.msb.port}}/api/multicloud + +# Timeout for Multicloud Rest Call (string value) +multicloud_rest_timeout = 30 + +# Number of retry for Multicloud Rest Call (string value) +multicloud_retries = 3 + +# The version of Multicloud API. (string value) +server_url_version = v0 + + +[vim_controller] +# +# From conductor +# + +# Extensions list to use (list value) +extensions = multicloud + |