blob: ec8c914c173709e05398b1ec6701c1b7c261191d [file] [log] [blame]
mayankg2703ced85142018-03-20 05:42:53 +00001# Copyright © 2017 Amdocs, Bell Canada, AT&T
Jorge Hernandez19a77fe2019-02-12 13:14:22 -06002# Modifications Copyright © 2018-2019 AT&T. All rights reserved.
mayankg2703ced85142018-03-20 05:42:53 +00003#
4# Licensed under the Apache License, Version 2.0 (the "License");
5# you may not use this file except in compliance with the License.
6# You may obtain a copy of the License at
7#
8# http://www.apache.org/licenses/LICENSE-2.0
9#
10# Unless required by applicable law or agreed to in writing, software
11# distributed under the License is distributed on an "AS IS" BASIS,
12# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13# See the License for the specific language governing permissions and
14# limitations under the License.
15
Mandeep Khinda12610242017-09-14 11:37:33 +000016#! /bin/bash
17
Alexis de Talhouëtdf4db0b2017-12-11 08:36:25 -050018# forked from https://gerrit.onap.org/r/gitweb?p=policy/docker.git;a=blob;f=config/pe/push-policies.sh;h=555ab357e6b4f54237bf07ef5e6777d782564bc0;hb=refs/heads/amsterdam and adapted for OOM
Mandeep Khinda12610242017-09-14 11:37:33 +000019
Alexis de Talhouëtdf4db0b2017-12-11 08:36:25 -050020#########################################Upload BRMS Param Template##########################################
Mandeep Khinda12610242017-09-14 11:37:33 +000021
Alexis de Talhouëtdf4db0b2017-12-11 08:36:25 -050022echo "Upload BRMS Param Template"
Mandeep Khinda12610242017-09-14 11:37:33 +000023
Alexis de Talhouëtdf4db0b2017-12-11 08:36:25 -050024sleep 2
25
Jorge Hernandez19a77fe2019-02-12 13:14:22 -060026wget -O cl-amsterdam-template.drl https://git.onap.org/policy/drools-applications/plain/controlloop/templates/archetype-cl-amsterdam/src/main/resources/archetype-resources/src/main/resources/__closedLoopControlName__.drl
Alexis de Talhouëtdf4db0b2017-12-11 08:36:25 -050027
28sleep 2
29
Michael Mokryc8070ef2018-09-19 12:05:08 -050030curl -k -v --silent -X POST --header 'Content-Type: multipart/form-data' --header 'Accept: text/plain' --header 'ClientAuth: cHl0aG9uOnRlc3Q=' --header 'Authorization: Basic dGVzdHBkcDphbHBoYTEyMw==' --header 'Environment: TEST' -F "file=@cl-amsterdam-template.drl" -F "importParametersJson={\"serviceName\":\"ClosedLoopControlName\",\"serviceType\":\"BRMSPARAM\"}" 'https://{{.Values.global.pdp.nameOverride}}:{{.Values.config.pdpPort}}/pdp/api/policyEngineImport'
Alexis de Talhouëtdf4db0b2017-12-11 08:36:25 -050031
32echo "PRELOAD_POLICIES is $PRELOAD_POLICIES"
33
34if [ "$PRELOAD_POLICIES" == "false" ]; then
35 exit 0
36fi
37
38#########################################Create BRMS Param policies##########################################
39
40echo "Create BRMSParam Operational Policies"
41
42sleep 2
43
44echo "Create BRMSParamvFirewall Policy"
Michael Mokry3efae0b2018-08-22 10:58:31 -050045curl -k -v --silent -X PUT --header 'Content-Type: application/json' --header 'Accept: text/html' --header 'ClientAuth: cHl0aG9uOnRlc3Q=' --header 'Authorization: Basic dGVzdHBkcDphbHBoYTEyMw==' --header 'Environment: TEST' -d '{
Michael Mokryc8070ef2018-09-19 12:05:08 -050046 "policyConfigType": "BRMS_PARAM",
47 "policyName": "com.BRMSParamvFirewall",
48 "policyDescription": "BRMS Param vFirewall policy",
49 "policyScope": "com",
50 "attributes": {
51 "MATCHING": {
52 "controller" : "amsterdam"
53 },
54 "RULE": {
55 "templateName": "ClosedLoopControlName",
56 "closedLoopControlName": "ControlLoop-vFirewall-d0a1dfc6-94f5-4fd4-a5b5-4630b438850a",
57 "controlLoopYaml": "controlLoop%3A%0D%0A++version%3A+2.0.0%0D%0A++controlLoopName%3A+ControlLoop-vFirewall-d0a1dfc6-94f5-4fd4-a5b5-4630b438850a%0D%0A++trigger_policy%3A+unique-policy-id-1-modifyConfig%0D%0A++timeout%3A+1200%0D%0A++abatement%3A+false%0D%0A+%0D%0Apolicies%3A%0D%0A++-+id%3A+unique-policy-id-1-modifyConfig%0D%0A++++name%3A+modify+packet+gen+config%0D%0A++++description%3A%0D%0A++++actor%3A+APPC%0D%0A++++recipe%3A+ModifyConfig%0D%0A++++target%3A%0D%0A++++++%23+TBD+-+Cannot+be+known+until+instantiation+is+done%0D%0A++++++resourceID%3A+Eace933104d443b496b8.nodes.heat.vpg%0D%0A++++++type%3A+VNF%0D%0A++++retry%3A+0%0D%0A++++timeout%3A+300%0D%0A++++success%3A+final_success%0D%0A++++failure%3A+final_failure%0D%0A++++failure_timeout%3A+final_failure_timeout%0D%0A++++failure_retries%3A+final_failure_retries%0D%0A++++failure_exception%3A+final_failure_exception%0D%0A++++failure_guard%3A+final_failure_guard"
58 }
59 }
Michael Mokry3efae0b2018-08-22 10:58:31 -050060}' 'https://{{.Values.global.pdp.nameOverride}}:{{.Values.config.pdpPort}}/pdp/api/createPolicy'
Alexis de Talhouëtdf4db0b2017-12-11 08:36:25 -050061
62sleep 2
63
64echo "Create BRMSParamvDNS Policy"
Michael Mokry3efae0b2018-08-22 10:58:31 -050065curl -k -v --silent -X PUT --header 'Content-Type: application/json' --header 'Accept: text/html' --header 'ClientAuth: cHl0aG9uOnRlc3Q=' --header 'Authorization: Basic dGVzdHBkcDphbHBoYTEyMw==' --header 'Environment: TEST' -d '{
Michael Mokryc8070ef2018-09-19 12:05:08 -050066 "policyConfigType": "BRMS_PARAM",
67 "policyName": "com.BRMSParamvDNS",
68 "policyDescription": "BRMS Param vDNS policy",
69 "policyScope": "com",
70 "attributes": {
71 "MATCHING": {
72 "controller" : "amsterdam"
73 },
74 "RULE": {
75 "templateName": "ClosedLoopControlName",
76 "closedLoopControlName": "ControlLoop-vDNS-6f37f56d-a87d-4b85-b6a9-cc953cf779b3",
Jim Hahn240d7be2018-11-02 14:20:33 -040077 "controlLoopYaml": "controlLoop%3A%0A++version%3A+2.0.0%0A++controlLoopName%3A+ControlLoop-vDNS-6f37f56d-a87d-4b85-b6a9-cc953cf779b3%0A++trigger_policy%3A+unique-policy-id-1-scale-up%0A++timeout%3A+1200%0A++abatement%3A+false%0Apolicies%3A%0A++-+id%3A+unique-policy-id-1-scale-up%0A++++name%3A+Create+a+new+VF+Module%0A++++description%3A%0A++++actor%3A+SO%0A++++recipe%3A+VF+Module+Create%0A++++target%3A%0A++++++type%3A+VNF%0A++++payload%3A%0A++++++requestParameters%3A+%27%7B%22usePreload%22%3Atrue%2C%22userParams%22%3A%5B%5D%7D%27%0A++++++configurationParameters%3A+%27%5B%7B%22ip-addr%22%3A%22%24.vf-module-topology.vf-module-parameters.param%5B9%5D%22%2C%22oam-ip-addr%22%3A%22%24.vf-module-topology.vf-module-parameters.param%5B16%5D%22%2C%22enabled%22%3A%22%24.vf-module-topology.vf-module-parameters.param%5B23%5D%22%7D%5D%27%0A++++retry%3A+0%0A++++timeout%3A+1200%0A++++success%3A+final_success%0A++++failure%3A+final_failure%0A++++failure_timeout%3A+final_failure_timeout%0A++++failure_retries%3A+final_failure_retries%0A++++failure_exception%3A+final_failure_exception%0A++++failure_guard%3A+final_failure_guard"
Michael Mokryc8070ef2018-09-19 12:05:08 -050078 }
79 }
Michael Mokry3efae0b2018-08-22 10:58:31 -050080}' 'https://{{.Values.global.pdp.nameOverride}}:{{.Values.config.pdpPort}}/pdp/api/createPolicy'
Alexis de Talhouëtdf4db0b2017-12-11 08:36:25 -050081
82sleep 2
83
84echo "Create BRMSParamVOLTE Policy"
Michael Mokry3efae0b2018-08-22 10:58:31 -050085curl -k -v --silent -X PUT --header 'Content-Type: application/json' --header 'Accept: text/html' --header 'ClientAuth: cHl0aG9uOnRlc3Q=' --header 'Authorization: Basic dGVzdHBkcDphbHBoYTEyMw==' --header 'Environment: TEST' -d '{
Michael Mokryc8070ef2018-09-19 12:05:08 -050086 "policyConfigType": "BRMS_PARAM",
87 "policyName": "com.BRMSParamVOLTE",
88 "policyDescription": "BRMS Param VOLTE policy",
89 "policyScope": "com",
90 "attributes": {
91 "MATCHING": {
92 "controller" : "amsterdam"
93 },
94 "RULE": {
95 "templateName": "ClosedLoopControlName",
96 "closedLoopControlName": "ControlLoop-VOLTE-2179b738-fd36-4843-a71a-a8c24c70c55b",
97 "controlLoopYaml": "controlLoop%3A%0D%0A++version%3A+2.0.0%0D%0A++controlLoopName%3A+ControlLoop-VOLTE-2179b738-fd36-4843-a71a-a8c24c70c55b%0D%0A++trigger_policy%3A+unique-policy-id-1-restart%0D%0A++timeout%3A+3600%0D%0A++abatement%3A+false%0D%0A+%0D%0Apolicies%3A%0D%0A++-+id%3A+unique-policy-id-1-restart%0D%0A++++name%3A+Restart+the+VM%0D%0A++++description%3A%0D%0A++++actor%3A+VFC%0D%0A++++recipe%3A+Restart%0D%0A++++target%3A%0D%0A++++++type%3A+VM%0D%0A++++retry%3A+3%0D%0A++++timeout%3A+1200%0D%0A++++success%3A+final_success%0D%0A++++failure%3A+final_failure%0D%0A++++failure_timeout%3A+final_failure_timeout%0D%0A++++failure_retries%3A+final_failure_retries%0D%0A++++failure_exception%3A+final_failure_exception%0D%0A++++failure_guard%3A+final_failure_guard"
98 }
99 }
Michael Mokry3efae0b2018-08-22 10:58:31 -0500100}' 'https://{{.Values.global.pdp.nameOverride}}:{{.Values.config.pdpPort}}/pdp/api/createPolicy'
Alexis de Talhouëtdf4db0b2017-12-11 08:36:25 -0500101
102sleep 2
103
104echo "Create BRMSParamvCPE Policy"
Michael Mokry3efae0b2018-08-22 10:58:31 -0500105curl -k -v --silent -X PUT --header 'Content-Type: application/json' --header 'Accept: text/html' --header 'ClientAuth: cHl0aG9uOnRlc3Q=' --header 'Authorization: Basic dGVzdHBkcDphbHBoYTEyMw==' --header 'Environment: TEST' -d '{
Michael Mokryc8070ef2018-09-19 12:05:08 -0500106 "policyConfigType": "BRMS_PARAM",
107 "policyName": "com.BRMSParamvCPE",
108 "policyDescription": "BRMS Param vCPE policy",
109 "policyScope": "com",
110 "attributes": {
111 "MATCHING": {
112 "controller" : "amsterdam"
113 },
114 "RULE": {
115 "templateName": "ClosedLoopControlName",
116 "closedLoopControlName": "ControlLoop-vCPE-48f0c2c3-a172-4192-9ae3-052274181b6e",
117 "controlLoopYaml": "controlLoop%3A%0D%0A++version%3A+2.0.0%0D%0A++controlLoopName%3A+ControlLoop-vCPE-48f0c2c3-a172-4192-9ae3-052274181b6e%0D%0A++trigger_policy%3A+unique-policy-id-1-restart%0D%0A++timeout%3A+3600%0D%0A++abatement%3A+true%0D%0A+%0D%0Apolicies%3A%0D%0A++-+id%3A+unique-policy-id-1-restart%0D%0A++++name%3A+Restart+the+VM%0D%0A++++description%3A%0D%0A++++actor%3A+APPC%0D%0A++++recipe%3A+Restart%0D%0A++++target%3A%0D%0A++++++type%3A+VM%0D%0A++++retry%3A+3%0D%0A++++timeout%3A+1200%0D%0A++++success%3A+final_success%0D%0A++++failure%3A+final_failure%0D%0A++++failure_timeout%3A+final_failure_timeout%0D%0A++++failure_retries%3A+final_failure_retries%0D%0A++++failure_exception%3A+final_failure_exception%0D%0A++++failure_guard%3A+final_failure_guard"
118 }
119 }
Michael Mokry3efae0b2018-08-22 10:58:31 -0500120}' 'https://{{.Values.global.pdp.nameOverride}}:{{.Values.config.pdpPort}}/pdp/api/createPolicy'
Alexis de Talhouëtdf4db0b2017-12-11 08:36:25 -0500121
Saravanan Abfac07b2018-09-19 18:31:18 +0530122sleep 2
123
124echo "Create BRMSParamvPCI Policy"
125curl -k -v --silent -X PUT --header 'Content-Type: application/json' --header 'Accept: text/html' --header 'ClientAuth: cHl0aG9uOnRlc3Q=' --header 'Authorization: Basic dGVzdHBkcDphbHBoYTEyMw==' --header 'Environment: TEST' -d '{
Michael Mokryc8070ef2018-09-19 12:05:08 -0500126 "policyConfigType": "BRMS_PARAM",
127 "policyName": "com.BRMSParamvPCI",
128 "policyDescription": "BRMS Param vPCI policy",
129 "policyScope": "com",
130 "attributes": {
131 "MATCHING": {
132 "controller" : "casablanca"
133 },
134 "RULE": {
135 "templateName": "ClosedLoopControlName",
136 "closedLoopControlName": "ControlLoop-vPCI-fb41f388-a5f2-11e8-98d0-529269fb1459",
137 "controlLoopYaml": "controlLoop%3A%0D%0A++version%3A+3.0.0%0D%0A++controlLoopName%3A+ControlLoop-vPCI-fb41f388-a5f2-11e8-98d0-529269fb1459%0D%0A++trigger_policy%3A+unique-policy-id-123-modifyconfig%0D%0A++timeout%3A+1200%0D%0A++abatement%3A+false%0D%0A+%0D%0Apolicies%3A%0D%0A++-+id%3A+unique-policy-id-123-modifyconfig%0D%0A++++name%3A+modify+PCI+config%0D%0A++++description%3A%0D%0A++++actor%3A+SDNR%0D%0A++++recipe%3A+ModifyConfig%0D%0A++++target%3A%0D%0A++++++%23+These+fields+are+not+used%0D%0A++++++resourceID%3A+Eace933104d443b496b8.nodes.heat.vpg%0D%0A++++++type%3A+VNF%0D%0A++++retry%3A+0%0D%0A++++timeout%3A+300%0D%0A++++success%3A+final_success%0D%0A++++failure%3A+final_failure%0D%0A++++failure_timeout%3A+final_failure_timeout%0D%0A++++failure_retries%3A+final_failure_retries%0D%0A++++failure_exception%3A+final_failure_exception%0D%0A++++failure_guard%3A+final_failure_guard"
138 }
139 }
Saravanan Abfac07b2018-09-19 18:31:18 +0530140}' 'https://{{.Values.global.pdp.nameOverride}}:{{.Values.config.pdpPort}}/pdp/api/createPolicy'
141
Vidyashree Ramad73af702018-12-04 08:57:49 +0530142sleep 2
143
144echo "Create BRMSParamCCVPN Policy"
145curl -k -v --silent -X PUT --header 'Content-Type: application/json' --header 'Accept: text/html' --header 'ClientAuth: cHl0aG9uOnRlc3Q=' --header 'Authorization: Basic dGVzdHBkcDphbHBoYTEyMw==' --header 'Environment: TEST' -d '{
146 "policyConfigType": "BRMS_PARAM",
147 "policyName": "com.BRMSParamCCVPN",
148 "policyDescription": "BRMS Param CCVPN policy",
149 "policyScope": "com",
150 "attributes": {
151 "MATCHING": {
152 "controller" : "amsterdam"
153 },
154 "RULE": {
155 "templateName": "ClosedLoopControlName",
156 "closedLoopControlName": "ControlLoop-CCVPN-2179b738-fd36-4843-a71a-a8c24c70c66b",
157 "controlLoopYaml": "controlLoop%3A%0D%0A++version%3A+2.0.0%0D%0A++controlLoopName%3A+ControlLoop-CCVPN-2179b738-fd36-4843-a71a-a8c24c70c66b%0D%0A++trigger_policy%3A+unique-policy-id-16-Reroute%0D%0A++timeout%3A+3600%0D%0A++abatement%3A+false%0D%0A+%0D%0Apolicies%3A%0D%0A++-+id%3A+unique-policy-id-16-Reroute%0D%0A++++name%3A+Connectivity Reroute%0D%0A++++description%3A%0D%0A++++actor%3A+SDNC%0D%0A++++recipe%3A+Reroute%0D%0A++++target%3A%0D%0A++++++type%3A+VM%0D%0A++++retry%3A+3%0D%0A++++timeout%3A+1200%0D%0A++++success%3A+final_success%0D%0A++++failure%3A+final_failure%0D%0A++++failure_timeout%3A+final_failure_timeout%0D%0A++++failure_retries%3A+final_failure_retries%0D%0A++++failure_exception%3A+final_failure_exception%0D%0A++++failure_guard%3A+final_failure_guard"
158 }
159 }
160}' 'https://{{.Values.global.pdp.nameOverride}}:{{.Values.config.pdpPort}}/pdp/api/createPolicy'
161
Alexis de Talhouëtdf4db0b2017-12-11 08:36:25 -0500162#########################################Create Micro Service Config policies##########################################
163
164echo "Create MicroService Config Policies"
165
166sleep 2
167
168echo "Create MicroServicevFirewall Policy"
Michael Mokry3efae0b2018-08-22 10:58:31 -0500169curl -k -v --silent -X PUT --header 'Content-Type: application/json' --header 'Accept: text/plain' --header 'ClientAuth: cHl0aG9uOnRlc3Q=' --header 'Authorization: Basic dGVzdHBkcDphbHBoYTEyMw==' --header 'Environment: TEST' -d '{
Michael Mokryc8070ef2018-09-19 12:05:08 -0500170 "configBody": "{ \"service\": \"tca_policy\", \"location\": \"SampleServiceLocation\", \"uuid\": \"test\", \"policyName\": \"MicroServicevFirewall\", \"description\": \"MicroService vFirewall Policy\", \"configName\": \"SampleConfigName\", \"templateVersion\": \"OpenSource.version.1\", \"version\": \"1.1.0\", \"priority\": \"1\", \"policyScope\": \"resource=SampleResource,service=SampleService,type=SampleType,closedLoopControlName=ControlLoop-vFirewall-d0a1dfc6-94f5-4fd4-a5b5-4630b438850a\", \"riskType\": \"SampleRiskType\", \"riskLevel\": \"1\", \"guard\": \"False\", \"content\": { \"tca_policy\": { \"domain\": \"measurementsForVfScaling\", \"metricsPerEventName\": [{ \"eventName\": \"vFirewallBroadcastPackets\", \"controlLoopSchemaType\": \"VNF\", \"policyScope\": \"DCAE\", \"policyName\": \"DCAE.Config_tca-hi-lo\", \"policyVersion\": \"v0.0.1\", \"thresholds\": [{ \"closedLoopControlName\": \"ControlLoop-vFirewall-d0a1dfc6-94f5-4fd4-a5b5-4630b438850a\", \"version\": \"1.0.2\", \"fieldPath\": \"$.event.measurementsForVfScalingFields.vNicUsageArray[*].receivedTotalPacketsDelta\", \"thresholdValue\": 300, \"direction\": \"LESS_OR_EQUAL\", \"severity\": \"MAJOR\", \"closedLoopEventStatus\": \"ONSET\" }, { \"closedLoopControlName\": \"ControlLoop-vFirewall-d0a1dfc6-94f5-4fd4-a5b5-4630b438850a\", \"version\": \"1.0.2\", \"fieldPath\": \"$.event.measurementsForVfScalingFields.vNicUsageArray[*].receivedTotalPacketsDelta\", \"thresholdValue\": 700, \"direction\": \"GREATER_OR_EQUAL\", \"severity\": \"CRITICAL\", \"closedLoopEventStatus\": \"ONSET\" } ] }] } } }",
171 "policyConfigType": "MicroService",
172 "policyName": "com.MicroServicevFirewall",
173 "onapName": "DCAE"
Michael Mokry3efae0b2018-08-22 10:58:31 -0500174}' 'https://{{.Values.global.pdp.nameOverride}}:{{.Values.config.pdpPort}}/pdp/api/createPolicy'
Alexis de Talhouëtdf4db0b2017-12-11 08:36:25 -0500175
176
177sleep 2
178
179echo "Create MicroServicevDNS Policy"
Michael Mokry3efae0b2018-08-22 10:58:31 -0500180curl -k -v --silent -X PUT --header 'Content-Type: application/json' --header 'Accept: text/plain' --header 'ClientAuth: cHl0aG9uOnRlc3Q=' --header 'Authorization: Basic dGVzdHBkcDphbHBoYTEyMw==' --header 'Environment: TEST' -d '{
Michael Mokryc8070ef2018-09-19 12:05:08 -0500181 "configBody": "{ \"service\": \"tca_policy\", \"location\": \"SampleServiceLocation\", \"uuid\": \"test\", \"policyName\": \"MicroServicevDNS\", \"description\": \"MicroService vDNS Policy\", \"configName\": \"SampleConfigName\", \"templateVersion\": \"OpenSource.version.1\", \"version\": \"1.1.0\", \"priority\": \"1\", \"policyScope\": \"resource=SampleResource,service=SampleService,type=SampleType,closedLoopControlName=ControlLoop-vDNS-6f37f56d-a87d-4b85-b6a9-cc953cf779b3\", \"riskType\": \"SampleRiskType\", \"riskLevel\": \"1\", \"guard\": \"False\", \"content\": { \"tca_policy\": { \"domain\": \"measurementsForVfScaling\", \"metricsPerEventName\": [{ \"eventName\": \"vLoadBalancer\", \"controlLoopSchemaType\": \"VM\", \"policyScope\": \"DCAE\", \"policyName\": \"DCAE.Config_tca-hi-lo\", \"policyVersion\": \"v0.0.1\", \"thresholds\": [{ \"closedLoopControlName\": \"ControlLoop-vDNS-6f37f56d-a87d-4b85-b6a9-cc953cf779b3\", \"version\": \"1.0.2\", \"fieldPath\": \"$.event.measurementsForVfScalingFields.vNicUsageArray[*].receivedTotalPacketsDelta\", \"thresholdValue\": 300, \"direction\": \"GREATER_OR_EQUAL\", \"severity\": \"CRITICAL\", \"closedLoopEventStatus\": \"ONSET\" }] }] } } }",
182 "policyConfigType": "MicroService",
183 "policyName": "com.MicroServicevDNS",
184 "onapName": "DCAE"
Michael Mokry3efae0b2018-08-22 10:58:31 -0500185}' 'https://{{.Values.global.pdp.nameOverride}}:{{.Values.config.pdpPort}}/pdp/api/createPolicy'
Alexis de Talhouëtdf4db0b2017-12-11 08:36:25 -0500186
187
188sleep 2
189
190echo "Create MicroServicevCPE Policy"
Michael Mokry3efae0b2018-08-22 10:58:31 -0500191curl -k -v --silent -X PUT --header 'Content-Type: application/json' --header 'Accept: text/plain' --header 'ClientAuth: cHl0aG9uOnRlc3Q=' --header 'Authorization: Basic dGVzdHBkcDphbHBoYTEyMw==' --header 'Environment: TEST' -d '{
Michael Mokry3f13e282018-09-13 10:53:26 -0500192 "configBody": "{ \"service\": \"tca_policy\", \"location\": \"SampleServiceLocation\", \"uuid\": \"test\", \"policyName\": \"MicroServicevCPE\", \"description\": \"MicroService vCPE Policy\", \"configName\": \"SampleConfigName\", \"templateVersion\": \"OpenSource.version.1\", \"version\": \"1.1.0\", \"priority\": \"1\", \"policyScope\": \"resource=SampleResource,service=SampleService,type=SampleType,closedLoopControlName=ControlLoop-vCPE-48f0c2c3-a172-4192-9ae3-052274181b6e\", \"riskType\": \"SampleRiskType\", \"riskLevel\": \"1\", \"guard\": \"False\", \"content\": { \"tca_policy\": { \"domain\": \"measurementsForVfScaling\", \"metricsPerEventName\": [{ \"eventName\": \"Measurement_vGMUX\", \"controlLoopSchemaType\": \"VNF\", \"policyScope\": \"DCAE\", \"policyName\": \"DCAE.Config_tca-hi-lo\", \"policyVersion\": \"v0.0.1\", \"thresholds\": [{ \"closedLoopControlName\": \"ControlLoop-vCPE-48f0c2c3-a172-4192-9ae3-052274181b6e\", \"version\": \"1.0.2\", \"fieldPath\": \"$.event.measurementsForVfScalingFields.additionalMeasurements[*].arrayOfFields[0].value\", \"thresholdValue\": 0, \"direction\": \"EQUAL\", \"severity\": \"MAJOR\", \"closedLoopEventStatus\": \"ABATED\" }, { \"closedLoopControlName\": \"ControlLoop-vCPE-48f0c2c3-a172-4192-9ae3-052274181b6e\", \"version\": \"1.0.2\", \"fieldPath\": \"$.event.measurementsForVfScalingFields.additionalMeasurements[*].arrayOfFields[0].value\", \"thresholdValue\": 0, \"direction\": \"GREATER\", \"severity\": \"CRITICAL\", \"closedLoopEventStatus\": \"ONSET\" }] }] } } }",
Michael Mokryc8070ef2018-09-19 12:05:08 -0500193 "policyConfigType": "MicroService",
194 "policyName": "com.MicroServicevCPE",
195 "onapName": "DCAE"
Michael Mokry3efae0b2018-08-22 10:58:31 -0500196}' 'https://{{.Values.global.pdp.nameOverride}}:{{.Values.config.pdpPort}}/pdp/api/createPolicy'
Alexis de Talhouëtdf4db0b2017-12-11 08:36:25 -0500197
Michael Mokry3f13e282018-09-13 10:53:26 -0500198#########################################Create SDNC Naming Policies##########################################
199
Marco Plataniaff1f3282019-05-06 17:31:22 -0400200echo "Create Generic SDNC Naming Policy for VNF"
Michael Mokry3f13e282018-09-13 10:53:26 -0500201
202sleep 2
203
204echo "Create SDNC vFW Naming Policy"
Michael Mokryc8070ef2018-09-19 12:05:08 -0500205curl -k -v --silent -X PUT --header 'Content-Type: application/json' --header 'Accept: text/plain' --header 'ClientAuth: cHl0aG9uOnRlc3Q=' --header 'Authorization: Basic dGVzdHBkcDphbHBoYTEyMw==' --header 'Environment: TEST' -d '{
Marco Platania6f2e9882019-06-10 13:45:48 -0400206 "configBody": "{ \"service\": \"SDNC-GenerateName\", \"version\": \"CSIT\", \"content\": { \"policy-instance-name\": \"ONAP_VNF_NAMING_TIMESTAMP\", \"naming-models\": [ { \"naming-properties\": [ { \"property-name\": \"AIC_CLOUD_REGION\" }, { \"property-name\": \"CONSTANT\", \"property-value\": \"ONAP-NF\" }, { \"property-name\": \"TIMESTAMP\" }, { \"property-value\": \"_\", \"property-name\": \"DELIMITER\" } ], \"naming-type\": \"VNF\", \"naming-recipe\": \"AIC_CLOUD_REGION|DELIMITER|CONSTANT|DELIMITER|TIMESTAMP\" }, { \"naming-properties\": [ { \"property-name\": \"VNF_NAME\" }, { \"property-name\": \"SEQUENCE\", \"increment-sequence\": { \"max\": \"zzz\", \"scope\": \"ENTIRETY\", \"start-value\": \"001\", \"length\": \"3\", \"increment\": \"1\", \"sequence-type\": \"alpha-numeric\" } }, { \"property-name\": \"NFC_NAMING_CODE\" }, { \"property-value\": \"_\", \"property-name\": \"DELIMITER\" } ], \"naming-type\": \"VNFC\", \"naming-recipe\": \"VNF_NAME|DELIMITER|NFC_NAMING_CODE|DELIMITER|SEQUENCE\" }, { \"naming-properties\": [ { \"property-name\": \"VNF_NAME\" }, { \"property-value\": \"_\", \"property-name\": \"DELIMITER\" }, { \"property-name\": \"VF_MODULE_LABEL\" }, { \"property-name\": \"VF_MODULE_TYPE\" }, { \"property-name\": \"SEQUENCE\", \"increment-sequence\": { \"max\": \"zzz\", \"scope\": \"PRECEEDING\", \"start-value\": \"01\", \"length\": \"3\", \"increment\": \"1\", \"sequence-type\": \"alpha-numeric\" } } ], \"naming-type\": \"VF-MODULE\", \"naming-recipe\": \"VNF_NAME|DELIMITER|VF_MODULE_LABEL|DELIMITER|VF_MODULE_TYPE|DELIMITER|SEQUENCE\" } ] } }",
Marco Plataniaff1f3282019-05-06 17:31:22 -0400207 "policyName": "SDNC_Policy.ONAP_VNF_NAMING_TIMESTAMP",
Michael Mokry3f13e282018-09-13 10:53:26 -0500208 "policyConfigType": "MicroService",
209 "onapName": "SDNC",
210 "riskLevel": "4",
211 "riskType": "test",
212 "guard": "false",
213 "priority": "4",
Marco Plataniaff1f3282019-05-06 17:31:22 -0400214 "description": "ONAP_VNF_NAMING_TIMESTAMP"
Alexis de Talhouët01885fa2018-11-07 09:24:19 -0500215}' 'https://{{.Values.global.pdp.nameOverride}}:{{.Values.config.pdpPort}}/pdp/api/createPolicy'
216
Saravanan Abfac07b2018-09-19 18:31:18 +0530217#########################################Creating OOF PCI Policies##########################################
218sleep 2
219
220echo "Create MicroServicevPCI Policy"
221curl -k -v --silent -X PUT --header 'Content-Type: application/json' --header 'Accept: text/plain' --header 'ClientAuth: cHl0aG9uOnRlc3Q=' --header 'Authorization: Basic dGVzdHBkcDphbHBoYTEyMw==' --header 'Environment: TEST' -d '{
222 "configBody": "{ \"service\": \"tca_policy\", \"location\": \"SampleServiceLocation_pci\", \"uuid\": \"test_pci\", \"policyName\": \"MicroServicevPCI\", \"description\": \"MicroService vPCI Policy\", \"configName\": \"SampleConfigName\", \"templateVersion\": \"OpenSource.version.1\", \"version\": \"1.1.0\", \"priority\": \"1\", \"policyScope\": \"resource=SampleResource,service=SampleService,type=SampleType,closedLoopControlName=ControlLoop-vPCI-fb41f388-a5f2-11e8-98d0-529269fb1459\", \"riskType\": \"SampleRiskType\", \"riskLevel\": \"1\", \"guard\": \"False\", \"content\": { \"tca_policy\": { \"domain\": \"measurementsForVfScaling\", \"metricsPerEventName\": [{ \"eventName\": \"vFirewallBroadcastPackets\", \"controlLoopSchemaType\": \"VNF\", \"policyScope\": \"DCAE\", \"policyName\": \"DCAE.Config_tca-hi-lo\", \"policyVersion\": \"v0.0.1\", \"thresholds\": [{ \"closedLoopControlName\": \"ControlLoop-vPCI-fb41f388-a5f2-11e8-98d0-529269fb1459\", \"version\": \"1.0.2\", \"fieldPath\": \"$.event.executePolicy\", \"thresholdValue\": 1, \"direction\": \"GREATER_OR_EQUAL\", \"severity\": \"MAJOR\", \"closedLoopEventStatus\": \"ONSET\" } ] }] } } }",
223 "policyConfigType": "MicroService",
224 "policyName": "com.MicroServicevPCI",
225 "onapName": "DCAE"
226}' 'https://{{.Values.global.pdp.nameOverride}}:{{.Values.config.pdpPort}}/pdp/api/createPolicy'
227
228sleep 2
229
230echo "Create PCI MS Config Policy"
231curl -k -v --silent -X PUT --header 'Content-Type: application/json' --header 'Accept: text/plain' --header 'ClientAuth: cHl0aG9uOnRlc3Q=' --header 'Authorization: Basic dGVzdHBkcDphbHBoYTEyMw==' --header 'Environment: TEST' -d '{
232 "policyName": "com.PCIMS_CONFIG_POLICY",
233 "configBody": "{ \"PCI_NEIGHBOR_CHANGE_CLUSTER_TIMEOUT_IN_SECS\":60, \"PCI_MODCONFIG_POLICY_NAME\":\"ControlLoop-vPCI-fb41f388-a5f2-11e8-98d0-529269fb1459\", \"PCI_OPTMIZATION_ALGO_CATEGORY_IN_OOF\":\"OOF-PCI-OPTIMIZATION\", \"PCI_SDNR_TARGET_NAME\":\"SDNR\" }",
234 "policyType": "Config",
235 "attributes" : { "matching" : { "key1" : "value1" } },
236 "policyConfigType": "Base",
237 "onapName": "DCAE",
238 "configName": "PCIMS_CONFIG_POLICY",
239 "configBodyType": "JSON"
240}' 'https://{{.Values.global.pdp.nameOverride}}:{{.Values.config.pdpPort}}/pdp/api/createPolicy'
241
242sleep 2
243
244echo "Create OOF Config Policy"
245curl -k -v --silent -X PUT --header 'Content-Type: application/json' --header 'Accept: text/plain' --header 'ClientAuth: cHl0aG9uOnRlc3Q=' --header 'Authorization: Basic dGVzdHBkcDphbHBoYTEyMw==' --header 'Environment: TEST' -d '{
246 "policyName": "com.OOF_PCI_CONFIG_POLICY",
247 "configBody": "{ \"ALGO_CATEGORY\":\"OOF-PCI-OPTIMIZATION\", \"PCI_OPTMIZATION_ALGO_NAME\":\"OOF-PCI-OPTIMIZATION-LEVEL1\", \"PCI_OPTIMIZATION_NW_CONSTRAINT\":\"MAX5PCICHANGESONLY\", \"PCI_OPTIMIZATION_PRIORITY\": 2, \"PCI_OPTIMIZATION_TIME_CONSTRAINT\":\"ONLYATNIGHT\" }",
248 "attributes" : { "matching" : { "key1" : "value1" } },
249 "policyType": "Config",
250 "policyConfigType": "Base",
251 "onapName": "DCAE",
252 "configName": "OOF_PCI_CONFIG_POLICY",
253 "configBodyType": "JSON"
254}' 'https://{{.Values.global.pdp.nameOverride}}:{{.Values.config.pdpPort}}/pdp/api/createPolicy'
255
Michael Mokryc8070ef2018-09-19 12:05:08 -0500256#########################################Creating Decision Guard policies#########################################
Alexis de Talhouëtdf4db0b2017-12-11 08:36:25 -0500257
258sleep 2
259
260echo "Creating Decision Guard policy"
Michael Mokryc8070ef2018-09-19 12:05:08 -0500261curl -k -v --silent -X PUT --header 'Content-Type: application/json' --header 'Accept: text/plain' --header 'ClientAuth: cHl0aG9uOnRlc3Q=' --header 'Authorization: Basic dGVzdHBkcDphbHBoYTEyMw==' --header 'Environment: TEST' -d '{
262 "policyClass": "Decision",
263 "policyName": "com.AllPermitGuard",
264 "policyDescription": "Testing all Permit YAML Guard Policy",
Michael Mokry6d366672018-11-12 20:10:34 -0600265 "onapName": "PDPD",
Michael Mokryc8070ef2018-09-19 12:05:08 -0500266 "ruleProvider": "GUARD_YAML",
267 "attributes": {
268 "MATCHING": {
269 "actor": ".*",
270 "recipe": ".*",
271 "targets": ".*",
272 "clname": ".*",
273 "limit": "10",
274 "timeWindow": "1",
275 "timeUnits": "minute",
276 "guardActiveStart": "00:00:01-05:00",
Michael Mokry6d366672018-11-12 20:10:34 -0600277 "guardActiveEnd": "23:59:59-05:00"
Michael Mokryc8070ef2018-09-19 12:05:08 -0500278 }
279 }
280}' 'https://{{.Values.global.pdp.nameOverride}}:{{.Values.config.pdpPort}}/pdp/api/createPolicy'
281
282sleep 2
283
284echo "Creating Decision vDNS Guard - Frequency Limiter policy"
285curl -k -v --silent -X PUT --header 'Content-Type: application/json' --header 'Accept: text/plain' --header 'ClientAuth: cHl0aG9uOnRlc3Q=' --header 'Authorization: Basic dGVzdHBkcDphbHBoYTEyMw==' --header 'Environment: TEST' -d '{
286 "policyClass": "Decision",
287 "policyName": "com.vDNS_Frequency",
288 "policyDescription": "Limit vDNS Scale Up over time period",
Michael Mokry6d366672018-11-12 20:10:34 -0600289 "onapName": "PDPD",
Michael Mokryc8070ef2018-09-19 12:05:08 -0500290 "ruleProvider": "GUARD_YAML",
291 "attributes": {
292 "MATCHING": {
293 "actor": "SO",
294 "recipe": "scaleOut",
295 "targets": ".*",
296 "clname": "ControlLoop-vDNS-6f37f56d-a87d-4b85-b6a9-cc953cf779b3",
297 "limit": "1",
298 "timeWindow": "10",
299 "timeUnits": "minute",
300 "guardActiveStart": "00:00:01-05:00",
Michael Mokry6d366672018-11-12 20:10:34 -0600301 "guardActiveEnd": "23:59:59-05:00"
Michael Mokryc8070ef2018-09-19 12:05:08 -0500302 }
303 }
304}' 'https://{{.Values.global.pdp.nameOverride}}:{{.Values.config.pdpPort}}/pdp/api/createPolicy'
305
306sleep 2
307
308echo "Creating Decision vDNS Guard - Min/Max policy"
309curl -k -v --silent -X PUT --header 'Content-Type: application/json' --header 'Accept: text/plain' --header 'ClientAuth: cHl0aG9uOnRlc3Q=' --header 'Authorization: Basic dGVzdHBkcDphbHBoYTEyMw==' --header 'Environment: TEST' -d '{
310 "policyClass": "Decision",
311 "policyName": "com.vDNS_MinMax",
312 "policyDescription": "Ensure number of instances within a range",
Michael Mokry6d366672018-11-12 20:10:34 -0600313 "onapName": "SampleDemo",
Michael Mokryc8070ef2018-09-19 12:05:08 -0500314 "ruleProvider": "GUARD_MIN_MAX",
315 "attributes": {
316 "MATCHING": {
317 "actor": "SO",
318 "recipe": "scaleOut",
319 "targets": ".*",
320 "clname": "ControlLoop-vDNS-6f37f56d-a87d-4b85-b6a9-cc953cf779b3",
321 "min": "1",
322 "max": "5",
323 "guardActiveStart": "00:00:01-05:00",
Michael Mokry6d366672018-11-12 20:10:34 -0600324 "guardActiveEnd": "23:59:59-05:00"
Michael Mokryc8070ef2018-09-19 12:05:08 -0500325 }
326 }
Michael Mokry3efae0b2018-08-22 10:58:31 -0500327}' 'https://{{.Values.global.pdp.nameOverride}}:{{.Values.config.pdpPort}}/pdp/api/createPolicy'
Alexis de Talhouëtdf4db0b2017-12-11 08:36:25 -0500328
329#########################################Push Decision policy#########################################
330
331sleep 2
332
Michael Mokryc8070ef2018-09-19 12:05:08 -0500333echo "Push Decision policy"
334curl -k -v --silent -X PUT --header 'Content-Type: application/json' --header 'Accept: text/plain' --header 'ClientAuth: cHl0aG9uOnRlc3Q=' --header 'Authorization: Basic dGVzdHBkcDphbHBoYTEyMw==' --header 'Environment: TEST' -d '{
335 "pdpGroup": "default",
336 "policyName": "com.AllPermitGuard",
337 "policyType": "DECISION"
338}' 'https://{{.Values.global.pdp.nameOverride}}:{{.Values.config.pdpPort}}/pdp/api/pushPolicy'
339
340sleep 2
341
342echo "Push Decision policy"
343curl -k -v --silent -X PUT --header 'Content-Type: application/json' --header 'Accept: text/plain' --header 'ClientAuth: cHl0aG9uOnRlc3Q=' --header 'Authorization: Basic dGVzdHBkcDphbHBoYTEyMw==' --header 'Environment: TEST' -d '{
344 "pdpGroup": "default",
345 "policyName": "com.vDNS_Frequency",
346 "policyType": "DECISION"
347}' 'https://{{.Values.global.pdp.nameOverride}}:{{.Values.config.pdpPort}}/pdp/api/pushPolicy'
348
349sleep 2
350
351echo "Push Decision policy"
352curl -k -v --silent -X PUT --header 'Content-Type: application/json' --header 'Accept: text/plain' --header 'ClientAuth: cHl0aG9uOnRlc3Q=' --header 'Authorization: Basic dGVzdHBkcDphbHBoYTEyMw==' --header 'Environment: TEST' -d '{
353 "pdpGroup": "default",
354 "policyName": "com.vDNS_MinMax",
355 "policyType": "DECISION"
Michael Mokry3efae0b2018-08-22 10:58:31 -0500356}' 'https://{{.Values.global.pdp.nameOverride}}:{{.Values.config.pdpPort}}/pdp/api/pushPolicy'
Alexis de Talhouëtdf4db0b2017-12-11 08:36:25 -0500357
358#########################################Pushing BRMS Param policies##########################################
359
360echo "Pushing BRMSParam Operational policies"
361
362sleep 2
363
364echo "pushPolicy : PUT : com.BRMSParamvFirewall"
Michael Mokry3efae0b2018-08-22 10:58:31 -0500365curl -k -v --silent -X PUT --header 'Content-Type: application/json' --header 'Accept: text/plain' --header 'ClientAuth: cHl0aG9uOnRlc3Q=' --header 'Authorization: Basic dGVzdHBkcDphbHBoYTEyMw==' --header 'Environment: TEST' -d '{
Mandeep Khinda12610242017-09-14 11:37:33 +0000366 "pdpGroup": "default",
Alexis de Talhouëtdf4db0b2017-12-11 08:36:25 -0500367 "policyName": "com.BRMSParamvFirewall",
368 "policyType": "BRMS_Param"
Michael Mokry3efae0b2018-08-22 10:58:31 -0500369}' 'https://{{.Values.global.pdp.nameOverride}}:{{.Values.config.pdpPort}}/pdp/api/pushPolicy'
Mandeep Khinda12610242017-09-14 11:37:33 +0000370
371sleep 2
372
Alexis de Talhouëtdf4db0b2017-12-11 08:36:25 -0500373echo "pushPolicy : PUT : com.BRMSParamvDNS"
Michael Mokry3efae0b2018-08-22 10:58:31 -0500374curl -k -v --silent -X PUT --header 'Content-Type: application/json' --header 'Accept: text/plain' --header 'ClientAuth: cHl0aG9uOnRlc3Q=' --header 'Authorization: Basic dGVzdHBkcDphbHBoYTEyMw==' --header 'Environment: TEST' -d '{
Mandeep Khinda12610242017-09-14 11:37:33 +0000375 "pdpGroup": "default",
Alexis de Talhouëtdf4db0b2017-12-11 08:36:25 -0500376 "policyName": "com.BRMSParamvDNS",
377 "policyType": "BRMS_Param"
Michael Mokry3efae0b2018-08-22 10:58:31 -0500378}' 'https://{{.Values.global.pdp.nameOverride}}:{{.Values.config.pdpPort}}/pdp/api/pushPolicy'
Alexis de Talhouëtdf4db0b2017-12-11 08:36:25 -0500379
380sleep 2
381
382echo "pushPolicy : PUT : com.BRMSParamVOLTE"
Michael Mokry3efae0b2018-08-22 10:58:31 -0500383curl -k -v --silent -X PUT --header 'Content-Type: application/json' --header 'Accept: text/plain' --header 'ClientAuth: cHl0aG9uOnRlc3Q=' --header 'Authorization: Basic dGVzdHBkcDphbHBoYTEyMw==' --header 'Environment: TEST' -d '{
Alexis de Talhouëtdf4db0b2017-12-11 08:36:25 -0500384 "pdpGroup": "default",
385 "policyName": "com.BRMSParamVOLTE",
386 "policyType": "BRMS_Param"
Michael Mokry3efae0b2018-08-22 10:58:31 -0500387}' 'https://{{.Values.global.pdp.nameOverride}}:{{.Values.config.pdpPort}}/pdp/api/pushPolicy'
Alexis de Talhouëtdf4db0b2017-12-11 08:36:25 -0500388
389sleep 2
390
391echo "pushPolicy : PUT : com.BRMSParamvCPE"
Michael Mokry3efae0b2018-08-22 10:58:31 -0500392curl -k -v --silent -X PUT --header 'Content-Type: application/json' --header 'Accept: text/plain' --header 'ClientAuth: cHl0aG9uOnRlc3Q=' --header 'Authorization: Basic dGVzdHBkcDphbHBoYTEyMw==' --header 'Environment: TEST' -d '{
Alexis de Talhouëtdf4db0b2017-12-11 08:36:25 -0500393 "pdpGroup": "default",
394 "policyName": "com.BRMSParamvCPE",
395 "policyType": "BRMS_Param"
Michael Mokry3efae0b2018-08-22 10:58:31 -0500396}' 'https://{{.Values.global.pdp.nameOverride}}:{{.Values.config.pdpPort}}/pdp/api/pushPolicy'
Alexis de Talhouëtdf4db0b2017-12-11 08:36:25 -0500397
Saravanan Abfac07b2018-09-19 18:31:18 +0530398sleep 2
399
400echo "pushPolicy : PUT : com.BRMSParamvPCI"
401curl -k -v --silent -X PUT --header 'Content-Type: application/json' --header 'Accept: text/plain' --header 'ClientAuth: cHl0aG9uOnRlc3Q=' --header 'Authorization: Basic dGVzdHBkcDphbHBoYTEyMw==' --header 'Environment: TEST' -d '{
402 "pdpGroup": "default",
403 "policyName": "com.BRMSParamvPCI",
404 "policyType": "BRMS_Param"
405}' 'https://{{.Values.global.pdp.nameOverride}}:{{.Values.config.pdpPort}}/pdp/api/pushPolicy'
406
Vidyashree Ramad73af702018-12-04 08:57:49 +0530407sleep 2
408
409echo "pushPolicy : PUT : com.BRMSParamCCVPN"
410curl -k -v --silent -X PUT --header 'Content-Type: application/json' --header 'Accept: text/plain' --header 'ClientAuth: cHl0aG9uOnRlc3Q=' --header 'Authorization: Basic dGVzdHBkcDphbHBoYTEyMw==' --header 'Environment: TEST' -d '{
411 "pdpGroup": "default",
412 "policyName": "com.BRMSParamCCVPN",
413 "policyType": "BRMS_Param"
414}' 'https://{{.Values.global.pdp.nameOverride}}:{{.Values.config.pdpPort}}/pdp/api/pushPolicy'
415
Alexis de Talhouëtdf4db0b2017-12-11 08:36:25 -0500416#########################################Pushing MicroService Config policies##########################################
417
418echo "Pushing MicroService Config policies"
419
420sleep 2
421
422echo "pushPolicy : PUT : com.MicroServicevFirewall"
Michael Mokry3efae0b2018-08-22 10:58:31 -0500423curl -k -v --silent -X PUT --header 'Content-Type: application/json' --header 'Accept: text/plain' --header 'ClientAuth: cHl0aG9uOnRlc3Q=' --header 'Authorization: Basic dGVzdHBkcDphbHBoYTEyMw==' --header 'Environment: TEST' -d '{
Alexis de Talhouëtdf4db0b2017-12-11 08:36:25 -0500424 "pdpGroup": "default",
425 "policyName": "com.MicroServicevFirewall",
426 "policyType": "MicroService"
Michael Mokry3efae0b2018-08-22 10:58:31 -0500427}' 'https://{{.Values.global.pdp.nameOverride}}:{{.Values.config.pdpPort}}/pdp/api/pushPolicy'
Alexis de Talhouëtdf4db0b2017-12-11 08:36:25 -0500428
429sleep 10
430
431echo "pushPolicy : PUT : com.MicroServicevDNS"
Michael Mokry3efae0b2018-08-22 10:58:31 -0500432curl -k -v --silent -X PUT --header 'Content-Type: application/json' --header 'Accept: text/plain' --header 'ClientAuth: cHl0aG9uOnRlc3Q=' --header 'Authorization: Basic dGVzdHBkcDphbHBoYTEyMw==' --header 'Environment: TEST' -d '{
Alexis de Talhouëtdf4db0b2017-12-11 08:36:25 -0500433 "pdpGroup": "default",
434 "policyName": "com.MicroServicevDNS",
Mandeep Khinda12610242017-09-14 11:37:33 +0000435 "policyType": "MicroService"
Michael Mokryc8070ef2018-09-19 12:05:08 -0500436}' 'https://{{.Values.global.pdp.nameOverride}}:{{.Values.config.pdpPort}}/pdp/api/pushPolicy'
Mandeep Khinda12610242017-09-14 11:37:33 +0000437
Alexis de Talhouëtdf4db0b2017-12-11 08:36:25 -0500438sleep 10
Mandeep Khinda12610242017-09-14 11:37:33 +0000439
Alexis de Talhouëtdf4db0b2017-12-11 08:36:25 -0500440echo "pushPolicy : PUT : com.MicroServicevCPE"
Michael Mokry3efae0b2018-08-22 10:58:31 -0500441curl -k -v --silent -X PUT --header 'Content-Type: application/json' --header 'Accept: text/plain' --header 'ClientAuth: cHl0aG9uOnRlc3Q=' --header 'Authorization: Basic dGVzdHBkcDphbHBoYTEyMw==' --header 'Environment: TEST' -d '{
Mandeep Khinda12610242017-09-14 11:37:33 +0000442 "pdpGroup": "default",
Alexis de Talhouëtdf4db0b2017-12-11 08:36:25 -0500443 "policyName": "com.MicroServicevCPE",
Mandeep Khinda12610242017-09-14 11:37:33 +0000444 "policyType": "MicroService"
Michael Mokryc8070ef2018-09-19 12:05:08 -0500445}' 'https://{{.Values.global.pdp.nameOverride}}:{{.Values.config.pdpPort}}/pdp/api/pushPolicy'
Michael Mokry3f13e282018-09-13 10:53:26 -0500446
447#########################################Pushing SDNC Naming Policies##########################################
448echo "Pushing SDNC Naming Policies"
449
450sleep 2
451
Marco Plataniaff1f3282019-05-06 17:31:22 -0400452echo "pushPolicy : PUT : SDNC_Policy.ONAP_VNF_NAMING_TIMESTAMP"
Michael Mokry3f13e282018-09-13 10:53:26 -0500453curl -k -v --silent -X PUT --header 'Content-Type: application/json' --header 'Accept: text/plain' --header 'ClientAuth: cHl0aG9uOnRlc3Q=' --header 'Authorization: Basic dGVzdHBkcDphbHBoYTEyMw==' --header 'Environment: TEST' -d '{
454 "pdpGroup": "default",
Marco Plataniaff1f3282019-05-06 17:31:22 -0400455 "policyName": "SDNC_Policy.ONAP_VNF_NAMING_TIMESTAMP",
Alexis de Talhouët01885fa2018-11-07 09:24:19 -0500456 "policyType": "MicroService"
457}' 'https://{{.Values.global.pdp.nameOverride}}:{{.Values.config.pdpPort}}/pdp/api/pushPolicy'
458
Saravanan Abfac07b2018-09-19 18:31:18 +0530459#########################################Pushing OOF PCI Policies##########################################
460sleep 10
461
462echo "pushPolicy : PUT : com.MicroServicevPCI"
463curl -k -v --silent -X PUT --header 'Content-Type: application/json' --header 'Accept: text/plain' --header 'ClientAuth: cHl0aG9uOnRlc3Q=' --header 'Authorization: Basic dGVzdHBkcDphbHBoYTEyMw==' --header 'Environment: TEST' -d '{
464 "pdpGroup": "default",
465 "policyName": "com.MicroServicevPCI",
466 "policyType": "MicroService"
Michael Mokryc8070ef2018-09-19 12:05:08 -0500467}' 'https://{{.Values.global.pdp.nameOverride}}:{{.Values.config.pdpPort}}/pdp/api/pushPolicy'
Saravanan Abfac07b2018-09-19 18:31:18 +0530468
469sleep 10
470
471echo "pushPolicy : PUT : com.PCIMS_CONFIG_POLICY"
472curl -k -v --silent -X PUT --header 'Content-Type: application/json' --header 'Accept: text/plain' --header 'ClientAuth: cHl0aG9uOnRlc3Q=' --header 'Authorization: Basic dGVzdHBkcDphbHBoYTEyMw==' --header 'Environment: TEST' -d '{
473 "pdpGroup": "default",
474 "policyName": "com.PCIMS_CONFIG_POLICY",
475 "policyType": "Base"
Michael Mokryc8070ef2018-09-19 12:05:08 -0500476}' 'https://{{.Values.global.pdp.nameOverride}}:{{.Values.config.pdpPort}}/pdp/api/pushPolicy'
Saravanan Abfac07b2018-09-19 18:31:18 +0530477
478sleep 10
479
480echo "pushPolicy : PUT : com.OOF_PCI_CONFIG_POLICY"
481curl -k -v --silent -X PUT --header 'Content-Type: application/json' --header 'Accept: text/plain' --header 'ClientAuth: cHl0aG9uOnRlc3Q=' --header 'Authorization: Basic dGVzdHBkcDphbHBoYTEyMw==' --header 'Environment: TEST' -d '{
482 "pdpGroup": "default",
483 "policyName": "com.OOF_PCI_CONFIG_POLICY",
484 "policyType": "Base"
Jim Hahn0f1a4122018-10-31 18:36:39 -0400485}' 'https://{{.Values.global.pdp.nameOverride}}:{{.Values.config.pdpPort}}/pdp/api/pushPolicy'