diff options
author | Michael Mokry <michael.mokry@att.com> | 2018-11-12 20:10:34 -0600 |
---|---|---|
committer | Alexis de Talhouƫt <alexis.de_talhouet@bell.ca> | 2018-11-13 19:45:28 +0000 |
commit | 6d366671068380e331153bce655f4e840f6d66d9 (patch) | |
tree | 115a35a782286e4abd70e0e62a3940e2962e64df /kubernetes | |
parent | e1887cc67ba5b0cccaab57c5959f2ffe958ee734 (diff) |
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 <michael.mokry@att.com>
Diffstat (limited to 'kubernetes')
-rw-r--r-- | kubernetes/policy/resources/config/pe/push-policies.sh | 12 |
1 files changed, 6 insertions, 6 deletions
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' |