3b20e64bc8e114a7c57384f7d259c2d5085f3f13
[it/dep.git] / ric-platform / 50-RIC-Platform / helm / appmgr / 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 repository: "nexus3.o-ran-sc.org:10004"
19 #repositoryOverride: "nexus3.o-ran-sc.org:10004"
20 imagePullPolicy: IfNotPresent
21 repositoryCred: docker-reg-cred
22
23 # Helm Repo for xApp
24 # By default a local helm repo is used. The global setting will override
25 # the default value. You can further override using
26 #helmRepositoryOverride: ""
27 helmRepository: "https://helm.ricinfra.local:31000" 
28
29 # Default secret name for Helm Repo credential. .Value.golbal.helmRepositoryCred will
30 # override the default value. You can further override uing
31 #helmRepositoryCredOverride:""
32 helmRepositoryCred: xapp-mgr-creds
33
34 # Default configmap name for Helm Repo cert. .Value.golbal.helmRepositoryCert will
35 # override the default value. You can further override uing
36 #helmRepositoryCertOverride:""
37 helmRepositoryCert: xapp-mgr-certs
38
39 # Helm Tiller for xApp
40 # The global setting will override this default value
41 # You can further override using helmRepositoryTillerOverride: ""
42 helmRepositoryTiller: "tiller-deploy" 
43
44 # Helm Tiller Namespace for xApp
45 # The global setting will override this default value
46 # You can further override using helmRepositoryTillerNamespaceOverride: ""
47 helmRepositoryTillerNamespace: "kube-system" 
48
49
50 # Helm Tiller port for xApp
51 # The global setting will override this default value
52 # You can further override using helmRepositoryTillerPortOverride: ""
53 helmRepositoryTillerPort: 44134 
54 # Uncomment the following line to override the docker registry
55 #repositoryOverride: ""
56
57
58 # Uncomment the following line to override the docker registry credential
59 #repositoryCredOverride: ""
60
61 # Uncomment the following line to override the image pull policy
62 #imagePullPolicyOverride: ""
63
64
65 appmgr:
66   image:
67     # xAppmanager Docker image name and tag
68     name: ric-plt-appmgr
69     tag: 0.1.3
70
71   # This section describes xAppManager
72   replicaCount: 1
73
74   containerPort: 8080
75   reponame: "helm-repo"
76
77   service:
78     type: ClusterIP
79     port: 8080
80     name: appmgr-service
81     protocol: "TCP"
82     extport: 30020
83
84
85   # config
86   # Path referred in xapp-manager for retrieving configuration details
87   appconfigpath: /opt/ric/config
88
89
90   # secret
91   # Path referred in xapp-manager for retrieving helm repo secrets
92   appsecretpath: /opt/ric/secret
93
94
95   # certificates
96   # Path referred in xapp-manager for retrieving helm repo client certificates
97   appcertpath: /opt/ric/certificates
98
99
100
101