Merge "Add chart for MR subscriber"
[it/dep.git] / RECIPE_EXAMPLE / RIC_AUX_RECIPE_EXAMPLE
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 #-------------------------------------------------------------------------
19 # Global common setting
20 #-------------------------------------------------------------------------
21 global:
22   # Docker registry from which RIC platform components pull the images
23   repository: nexus3.o-ran-sc.org:10004
24
25   # Name of the K8S docker credential that is onboarded by 20-credential 
26   repositoryCred: docker-reg-cred
27
28   # Docker image pull policy
29   imagePullPolicy: Always
30
31   # Helm repo that will be used by xApp manager
32   helmRepository: "http://aux-entry/helm"
33
34   # Certificate of the helm repo
35   helmRepositoryCert: xapp-mgr-certs
36
37   # Name of the K8S secret that contains the credential of the helm repo
38   helmRepositoryCred: xapp-mgr-creds
39
40   # Endpoint of k8s API server
41   k8sAPIHost: https://kubernetes.default.svc.cluster.local/
42
43
44   # The ingress URL definitions for the ingress controller in four namespaces
45   ingressurl:
46     ric: ric-entry
47     aux: aux-entry
48
49   tillers:
50     ricxapp:
51       name: ricxapp
52       nameSpace: ricxapp
53       deployNameSpace: ricinfra
54       image:
55         tillerTLSSecrets:
56           repository: nexus3.o-ran-sc.org:10004
57           name: it-dep-secret
58           tag: 0.0.2
59         tiller:
60           repository: gcr.io
61           name: kubernetes-helm/tiller
62           tag: v2.12.3
63       secret:
64         create: true
65         tillerSecretName: secret-tiller-ricxapp
66         helmSecretName: secret-helm-client-ricxapp
67       tls:
68        authenticate: true
69        verify: true
70       serviceAccount:
71         name: tiller
72         role:
73         - apiGroups: [""]
74           resources: ["pods", "configmaps", "services"]
75           verbs: ["get", "list", "create", "delete"]
76         - apiGroups: ["extensions", "apps"]
77           resources: ["deployments"]
78           verbs: ["get", "list", "create", "delete"]
79       port: 44134
80
81 #-------------------------------------------------------------------------
82 # Auxiliary Functions
83 #-------------------------------------------------------------------------
84 dashboard:
85   # Override the name using the following option
86   # nameOverride:
87   image:
88     name: ric-dashboard
89     tag: 1.2.0
90   properties:
91     # application.properties
92     portalapi:
93       username: username
94       password: password
95     metrics:
96       url:
97         ac: http://ric-aux-kibana-server:5601/goto/fedcba9876543210?embed=true
98     # key.properties
99     cipher.enc.key: AGLDdG4D04BKm2IxIWEr8o==
100     # portal.properties
101     # external URL for user browser
102     ecomp_redirect_url: https://portal.api.simpledemo.onap.org:30225/ONAPPORTAL/login.htm
103     # internal URL for backend
104     ecomp_rest_url:     http://portal-app.onap:8989/ONAPPORTAL/auxapi
105     ueb_app_key: uebkey
106
107 extsvcaux:
108   ricip:
109     # The ip address of the ric cluster ingress controller
110     <IP_ADDRESS of the RIC cluster>
111   auxip:
112     # The ip address of the aux cluster ingress controller
113     <IP_ADDRESS of the AUX cluster>