summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJack Lucas <jflucas@research.att.com>2020-01-15 21:21:51 +0000
committerGerrit Code Review <gerrit@onap.org>2020-01-15 21:21:51 +0000
commitb5ea66623c1d6178cfcc325687f03abe81d23575 (patch)
treef7563f179d5e43a762e561b1614d03bc8ed9ab73
parent0b0a6ca5d765ea2bda591c34b6c995aae00bcd4c (diff)
parentfbb4f6408bc157ed35c306a6555dc19a4be49547 (diff)
Merge "Do not use get_secret in test blueprint"
-rw-r--r--helm/plugin/tests/blueprint/blueprint.yaml6
1 files changed, 3 insertions, 3 deletions
diff --git a/helm/plugin/tests/blueprint/blueprint.yaml b/helm/plugin/tests/blueprint/blueprint.yaml
index 9a96910..2a7198d 100644
--- a/helm/plugin/tests/blueprint/blueprint.yaml
+++ b/helm/plugin/tests/blueprint/blueprint.yaml
@@ -70,9 +70,9 @@ node_templates:
repo_user_password: { get_input: repo-user-password}
config_format: { get_input: config-format}
tls_enable: { get_input: tls-enable}
- ca: { get_secret: ca_value}
- cert: { get_secret: cert_value}
- key: { get_secret: key_value}
+ ca: "result of get_secret ca_value"
+ cert: "result of get_secret cert_value"
+ key: "result of get_secret key_value"
config_dir: { get_input: config-dir}
stable_repo_url: { get_input: stable-repo-url}