summaryrefslogtreecommitdiffstats
path: root/k8s/configure/configure.py
diff options
context:
space:
mode:
Diffstat (limited to 'k8s/configure/configure.py')
-rw-r--r--k8s/configure/configure.py4
1 files changed, 4 insertions, 0 deletions
diff --git a/k8s/configure/configure.py b/k8s/configure/configure.py
index c0dcd3f..fbf578c 100644
--- a/k8s/configure/configure.py
+++ b/k8s/configure/configure.py
@@ -50,6 +50,7 @@ EXT_TLS_LOCATION = "San-Francisco"
EXT_TLS_KEYSTORE_PASSWORD = "secret"
EXT_TLS_TRUSTSTORE_PASSWORD = "secret"
+TRUST_STORE_MERGER_IMAGE = "nexus3.onap.org:10001/onap/org.onap.dcae.truststore-merger:1.2.0"
CBS_BASE_URL = "https://config-binding-service:10443/service_component_all"
def _set_defaults():
@@ -85,6 +86,9 @@ def _set_defaults():
"keystore_password" : EXT_TLS_KEYSTORE_PASSWORD, # Password to keystore file
"truststore_password" : EXT_TLS_TRUSTSTORE_PASSWORD # Password to truststore file
},
+ "truststore_merger": {
+ "image_tag": TRUST_STORE_MERGER_IMAGE
+ },
"cbs": {
"base_url" : CBS_BASE_URL # URL prefix for accessing config binding service
}