summaryrefslogtreecommitdiffstats
path: root/heat/register.sh
diff options
context:
space:
mode:
authorVijay Venkatesh Kumar <vv770d@att.com>2018-09-27 10:17:21 -0400
committervagrant <vv770d@att.com>2018-10-09 13:52:34 +0000
commit69aedf8e5bbe110f95defb06cedd8a212bd19eb7 (patch)
treed5b5a2d141cb6479624436eb2c216ff16100292f /heat/register.sh
parent20fdd615eeb9b4fa1594273b1fa3d7eca8992c8b (diff)
Add aaf tls certifiacte support
Updated registration input to match k8s - https://git.onap.org/oom/tree/kubernetes/dcaegen2/charts/dcae-bootstrap/resources/inputs/k8s-policy_handler-inputs.yaml Issue-ID: DCAEGEN2-716 Change-Id: I52041ddc168e31abe083eaed4a88bfc40a5a2780 Signed-off-by: Lusheng Ji <lji@research.att.com> Signed-off-by: Vijay Venkatesh Kumar <vv770d@att.com>
Diffstat (limited to 'heat/register.sh')
-rwxr-xr-xheat/register.sh12
1 files changed, 10 insertions, 2 deletions
diff --git a/heat/register.sh b/heat/register.sh
index 6bd7b7b..66c4f72 100755
--- a/heat/register.sh
+++ b/heat/register.sh
@@ -197,7 +197,10 @@ REGKV='
"policy_handler": {
"deploy_handler": {
"target_entity": "deployment_handler",
+ "tls_ca_mode": "do_not_verify",
"max_msg_length_mb": 5,
+ "url" : "https://{{ dcae_ip_addr }}:8188",
+ "tls_ca_mode" : "cert_directory",
"query": {
"cfy_tenant_name": "default_tenant"
}
@@ -214,6 +217,9 @@ REGKV='
},
"policy_engine": {
"path_api": "/pdp/api/",
+ "path_notifications" : "/pdp/notifications",
+ "tls_ca_mode" : "cert_directory",
+ "tls_wss_ca_mode" : "cert_directory",
"headers": {
"Environment": "TEST",
"ClientAuth": "cHl0aG9uOnRlc3Q=",
@@ -222,8 +228,10 @@ REGKV='
"Authorization": "Basic dGVzdHBkcDphbHBoYTEyMw=="
},
"path_pdp": "/pdp/",
- "url": "http://{{ policy_ip_addr }}:8081",
- "target_entity": "policy_engine"
+ "url": "https://{{ policy_ip_addr }}:8081",
+ "target_entity": "policy_engine",
+ "tls_wss_ca_mode": "do_not_verify",
+ "tls_ca_mode": "do_not_verify"
}
}
}'