ae26644f7661dfdfc9b33252515f78c4b90b6726
[it/dep.git] / nonrtric / helm / policymanagementservice / values.yaml
1 ################################################################################
2 #   Copyright (c) 2020 Nordix Foundation.                                      #
3 #                                                                              #
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 ################################################################################
16
17 # Default values for Policy Management Service.
18 # This is a YAML-formatted file.
19 # Declare variables to be passed into your templates.
20
21 policymanagementservice:
22   imagePullPolicy: IfNotPresent
23   image:
24     registry: 'nexus3.o-ran-sc.org:10004/o-ran-sc'
25     name: nonrtric-policy-agent
26     tag: 2.2.0
27   service:
28     allowHttp: true
29     httpName: http
30     internalPort1: 9080
31     targetPort1: 8081
32     httpsName: https
33     internalPort2: 9081
34     targetPort2: 8433
35   liveness:
36     initialDelaySeconds: 20
37     periodSeconds: 10
38   readiness:
39     initialDelaySeconds: 20
40     periodSeconds: 10
41   controllers: |
42     [
43          {
44             "name": "controller1",
45             "baseUrl": "https://a1controller:8383",
46             "userName": "admin",
47             "password": "Kp8bJ4SXszM0WXlhak3eHlcse2gAw84vaoGGmJvUy2U"
48          }
49     ]
50   ric: |
51     [
52           {
53              "name":"ric1",
54              "baseUrl":"https://a1-sim-osc-0.a1-sim:8185",
55              "controller": "controller1",
56              "managedElementIds":[
57                 "kista_1",
58                 "kista_2"
59              ]
60           },
61           {
62             "name":"ric2",
63             "baseUrl":"https://a1-sim-osc-1.a1-sim:8185",
64             "controller": "controller1",
65             "managedElementIds":[
66                "kista_1",
67                "kista_2"
68             ]
69           },
70           {
71             "name":"ric3",
72             "baseUrl":"https://a1-sim-std-0.a1-sim:8185",
73             "controller": "controller1",
74             "managedElementIds":[
75                "kista_1",
76                "kista_2"
77             ]
78           },
79           {
80             "name":"ric4",
81             "baseUrl":"https://a1-sim-std-1.a1-sim:8185",
82             "controller": "controller1",
83             "managedElementIds":[
84                "kista_1",
85                "kista_2"
86             ]
87           }
88     ]
89   streams_publishes: |
90     {
91           "dmaap_publisher":{
92              "type":"message_router",
93              "dmaap_info":{
94                 "topic_url":"http://message-router:3904/events/A1-POLICY-AGENT-WRITE"
95              }
96           }
97     }
98   streams_subscribes: |
99     {
100           "dmaap_subscriber":{
101              "type":"message_router",
102              "dmaap_info":{
103                 "topic_url":"http://message-router:3904/events/A1-POLICY-AGENT-READ/users/policy-agent?timeout=15000&limit=100"
104              }
105           }
106     }
107