From 6d366671068380e331153bce655f4e840f6d66d9 Mon Sep 17 00:00:00 2001 From: Michael Mokry Date: Mon, 12 Nov 2018 20:10:34 -0600 Subject: Fix issue with Guard policies Modified push-policies.sh to fix pre-loaded guard policies Changed ecompName to onapName in createPolicy requests Change-Id: I3fd0b7ba0eb3909e5f37ba233df3f8eee64b191a Issue-ID: POLICY-1257 Signed-off-by: Michael Mokry --- kubernetes/policy/resources/config/pe/push-policies.sh | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) (limited to 'kubernetes/policy') diff --git a/kubernetes/policy/resources/config/pe/push-policies.sh b/kubernetes/policy/resources/config/pe/push-policies.sh index c6da184514..f591096cd3 100644 --- a/kubernetes/policy/resources/config/pe/push-policies.sh +++ b/kubernetes/policy/resources/config/pe/push-policies.sh @@ -272,7 +272,7 @@ curl -k -v --silent -X PUT --header 'Content-Type: application/json' --header 'A "policyClass": "Decision", "policyName": "com.AllPermitGuard", "policyDescription": "Testing all Permit YAML Guard Policy", - "ecompName": "PDPD", + "onapName": "PDPD", "ruleProvider": "GUARD_YAML", "attributes": { "MATCHING": { @@ -284,7 +284,7 @@ curl -k -v --silent -X PUT --header 'Content-Type: application/json' --header 'A "timeWindow": "1", "timeUnits": "minute", "guardActiveStart": "00:00:01-05:00", - "guardActiveEnd": "00:00:00-05:00" + "guardActiveEnd": "23:59:59-05:00" } } }' 'https://{{.Values.global.pdp.nameOverride}}:{{.Values.config.pdpPort}}/pdp/api/createPolicy' @@ -296,7 +296,7 @@ curl -k -v --silent -X PUT --header 'Content-Type: application/json' --header 'A "policyClass": "Decision", "policyName": "com.vDNS_Frequency", "policyDescription": "Limit vDNS Scale Up over time period", - "ecompName": "PDPD", + "onapName": "PDPD", "ruleProvider": "GUARD_YAML", "attributes": { "MATCHING": { @@ -308,7 +308,7 @@ curl -k -v --silent -X PUT --header 'Content-Type: application/json' --header 'A "timeWindow": "10", "timeUnits": "minute", "guardActiveStart": "00:00:01-05:00", - "guardActiveEnd": "00:00:00-05:00" + "guardActiveEnd": "23:59:59-05:00" } } }' 'https://{{.Values.global.pdp.nameOverride}}:{{.Values.config.pdpPort}}/pdp/api/createPolicy' @@ -320,7 +320,7 @@ curl -k -v --silent -X PUT --header 'Content-Type: application/json' --header 'A "policyClass": "Decision", "policyName": "com.vDNS_MinMax", "policyDescription": "Ensure number of instances within a range", - "ecompName": "PDPD", + "onapName": "SampleDemo", "ruleProvider": "GUARD_MIN_MAX", "attributes": { "MATCHING": { @@ -331,7 +331,7 @@ curl -k -v --silent -X PUT --header 'Content-Type: application/json' --header 'A "min": "1", "max": "5", "guardActiveStart": "00:00:01-05:00", - "guardActiveEnd": "00:00:00-05:00" + "guardActiveEnd": "23:59:59-05:00" } } }' 'https://{{.Values.global.pdp.nameOverride}}:{{.Values.config.pdpPort}}/pdp/api/createPolicy' -- cgit 1.2.3-korg