5986c148bf3fb60897974d27011977a4b0510ebe
[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:10002/o-ran-sc'
25     name: nonrtric-policy-agent
26     tag: 2.0.0
27   service:
28     allowHttp: true
29     httpName: http
30     internalPort1: 9080
31     targetPort1: 8081
32     externalPort1: 30093
33     httpsName: https
34     internalPort2: 9081
35     targetPort2: 8433
36     externalPort2: 30094
37   liveness:
38     initialDelaySeconds: 20
39     periodSeconds: 10
40   readiness:
41     initialDelaySeconds: 20
42     periodSeconds: 10
43   controllers: |
44     [
45          {  
46             "name": "controller1",
47             "baseUrl": "https://a1controller:8383",
48             "userName": "admin",
49             "password": "Kp8bJ4SXszM0WXlhak3eHlcse2gAw84vaoGGmJvUy2U"
50          }
51     ]
52   ric: |
53     [
54           {
55              "name":"ric1",
56              "baseUrl":"https://a1-sim-osc-0.a1-sim:8185",
57              "controller": "controller1",
58              "managedElementIds":[
59                 "kista_1",
60                 "kista_2"
61              ]
62           },
63           {
64             "name":"ric2",
65             "baseUrl":"https://a1-sim-osc-1.a1-sim:8185",
66             "controller": "controller1",
67             "managedElementIds":[
68                "kista_1",
69                "kista_2"
70             ]
71           },
72           {
73             "name":"ric3",
74             "baseUrl":"https://a1-sim-std-0.a1-sim:8185",
75             "controller": "controller1",
76             "managedElementIds":[
77                "kista_1",
78                "kista_2"
79             ]
80           },
81           {
82             "name":"ric4",
83             "baseUrl":"https://a1-sim-std-1.a1-sim:8185",
84             "controller": "controller1",
85             "managedElementIds":[
86                "kista_1",
87                "kista_2"
88             ]
89           }
90     ]
91   streams_publishes: |
92     {
93           "dmaap_publisher":{
94              "type":"message_router",
95              "dmaap_info":{
96                 "topic_url":"http://message-router:3904/events/A1-POLICY-AGENT-WRITE"
97              }
98           }
99     }
100   streams_subscribes: |
101     {
102           "dmaap_subscriber":{
103              "type":"message_router",
104              "dmaap_info":{
105                 "topic_url":"http://message-router:3904/events/A1-POLICY-AGENT-READ/users/policy-agent?timeout=15000&limit=100"
106              }
107           }
108     }
109