Extend K8S and RIC installation instructions
[it/dep.git] / ric-aux / helm / dashboard / values.yaml
1 ################################################################################
2 #   Copyright (c) 2019 AT&T Intellectual Property.                             #
3 #   Copyright (c) 2019 Nokia.                                                  #
4 #                                                                              #
5 #   Licensed under the Apache License, Version 2.0 (the "License");            #
6 #   you may not use this file except in compliance with the License.           #
7 #   You may obtain a copy of the License at                                    #
8 #                                                                              #
9 #       http://www.apache.org/licenses/LICENSE-2.0                             #
10 #                                                                              #
11 #   Unless required by applicable law or agreed to in writing, software        #
12 #   distributed under the License is distributed on an "AS IS" BASIS,          #
13 #   WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.   #
14 #   See the License for the specific language governing permissions and        #
15 #   limitations under the License.                                             #
16 ################################################################################
17
18 # Deployment values for dashboard.
19
20 dashboard:
21   imagePullPolicy: IfNotPresent
22   image:
23     registry: "nexus3.o-ran-sc.org:10002/o-ran-sc"
24     name: ric-dashboard
25     tag: 2.0.0
26   replicaCount: 1
27
28   # Service ports are now defined in
29   # ric-common/Common-Template/helm/ric-common/templates/_ports.tpl file.
30   # If need to change a service port, make the code change necessary, then
31   # update the _ports.tpl file with the new port number.
32   # The keys listed below MUST be configured in each deployment;
33   # this list does not include all keys recognized by the app.
34
35   # Specify a storage class to bypass the local storage definition.
36   # storageclass:
37   # persist user details as JSON to a persistent volume
38   storagesize: 1Mi
39   # in the container
40   userfile: /dashboard-data/users.json
41   # on the server
42   datapath: /opt/data/dashboard-data
43   # The URL prefixes are specific to instances
44   # and may be K8S service names, see below.
45   a1med:
46     url:
47       # uses pltUrlPrefix
48       suffix: /a1mediator
49   appmgr:
50     url:
51       # uses pltUrlPrefix
52       suffix: /appmgr/ric/v1
53   caasingress:
54     # Ignore SSL problems to CaaS-Ingress by enabling this
55     insecure: true
56     plt:
57       url:
58         # uses caasUrlPrefix
59         suffix: /api
60   e2mgr:
61     url:
62       # uses pltUrlPrefix
63       suffix: /e2mgr/v1
64   cipher:
65     enc:
66       key:
67   portalapi:
68     security: false
69     appname: RIC-Dashboard
70     username: Default
71     password: password
72     ecomp_redirect_url: https://portal.api.simpledemo.onap.org:30225/ONAPPORTAL/login.htm
73     ecomp_rest_url: http://portal-app:8989/ONAPPORTAL/auxapi
74     ueb_app_key: uebkey
75   # Instance keys must be unique, but region names are for users only.
76   # Regions and instances are shown here only as documentation of the format.
77   ricinstances: |
78     regions:
79       -
80         name: Region AAA
81         instances:
82           -
83             key: i1
84             name: Primary RIC Instance
85             appUrlPrefix: App prefix 1
86             caasUrlPrefix: Caas prefix 1
87             pltUrlPrefix: Plt prefix 1
88           -
89             key: i2
90             name: RIC Instance Nr Two
91             appUrlPrefix: App prefix 2
92             caasUrlPrefix: Caas prefix 2
93             pltUrlPrefix: Plt prefix 2
94       -
95         name: Region DDD
96         instances:
97           -
98             key: i3
99             name: RIC Instance in region D
100             appUrlPrefix: App prefix 3
101             caasUrlPrefix: Caas prefix 3
102             pltUrlPrefix: Plt prefix 3
103 # end