diff options
author | Michael Mokry <michael.mokry@att.com> | 2018-11-13 09:33:51 -0600 |
---|---|---|
committer | Michael Mokry <michael.mokry@att.com> | 2018-11-13 09:46:40 -0600 |
commit | 5c2b280fbc04014a120c516e4b9531f15380e8e8 (patch) | |
tree | 16958a201223905ed6ee5f02217863374926142c | |
parent | 50c9b4a770fc7b853440fcde983216c07b634f20 (diff) |
Fix bug in Guard policies for Docker
Modified push-policies.sh to fix pre-loaded guard policies
Change-Id: I8716079d6abb0b1ac2872c55b4450bf69842c163
Issue-ID: POLICY-1257
Signed-off-by: Michael Mokry <michael.mokry@att.com>
-rwxr-xr-x | config/pe/push-policies.sh | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/config/pe/push-policies.sh b/config/pe/push-policies.sh index 1df59eeb..1f718957 100755 --- a/config/pe/push-policies.sh +++ b/config/pe/push-policies.sh @@ -253,7 +253,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": { @@ -265,7 +265,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://pdp:8081/pdp/api/createPolicy' @@ -277,7 +277,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": { @@ -289,7 +289,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://pdp:8081/pdp/api/createPolicy' @@ -301,7 +301,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": { @@ -312,7 +312,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://pdp:8081/pdp/api/createPolicy' |