Update repo URL domain name
[it/dep.git] / ricplt / appmgr / charts / 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 # This is a YAML-formatted file.
19 # Declare variables to be passed into your templates.
20
21 # Modify this section to point to Docker image repository
22 image:
23   repository: "${__RUNRICENV_DOCKER_HOST__}:${__RUNRICENV_DOCKER_PORT__}"
24   repositoryCred: "docker-reg-cred"
25   pullPolicy: IfNotPresent
26   
27   # xAppmanager Docker image name and tag
28   name: xapp-manager
29   tag: latest
30
31 # This section describes xAppManager
32 replicaCount: 1
33
34 containerPort: 8080
35
36 service:
37   type: NodePort
38   appmgr:
39     port: 8080
40     name: appmgr-service
41     protocol: "TCP"
42     export: 30020
43
44
45 # config
46 # Path referred in xapp-manager for retrieving configuration details
47 appconfigpath: /opt/ric/config
48 appconfig:
49   # To be present as files under appconfigpath
50   # Use your own environment addresses
51   xapp-manager.yaml: |
52     "local":
53       # Port on which the xapp-manager REST services are provided
54       "host": ":8080"
55     "helm":
56       # Remote helm repo URL. UPDATE this as required.
57       "repo": "https://${__RUNRICENV_HELMREPO_HOST__}:${__RUNRICENV_HELMREPO_PORT__}"
58
59       # Repo name referred within the xapp-manager
60       "repo-name": "helm-repo"
61
62       # Tiller service details in the cluster. UPDATE this as required.
63       "tiller-service": "tiller-deploy"
64       "tiller-namespace": "kube-system"
65       "tiller-port": "44134"
66
67 # To be provided as env variables
68 appenv:
69   NAME: xappmgr
70   #ENV1: "envvalue1"
71   #ENV2: "envvalue2"
72
73 # secret
74 # Path referred in xapp-manager for retrieving helm repo secrets
75 appsecretpath: /opt/ric/secret
76
77 # Secret object with credentials that should be created in K8S cluster. 
78 # Parameters in this object are currently referred by xapp-manager to connect to helm repo and these are:
79 # helm_repo_username
80 # helm_repo_password
81 appsecretobject: xapp-mgr-creds
82
83 # certificates
84 # Path referred in xapp-manager for retrieving helm repo client certificates
85 appcertpath: /opt/ric/certificates
86
87 # configMap object in K8S cluster that holds the client side certificates to connect to helm repo.
88 # Currently all certificates mounted by this object are copied to /etc/ssl/certs
89 appcertobject: xapp-mgr-certs
90
91 resources: {}
92 # limits:
93 #   cpu: 100m
94 #   memory: 128Mi
95 # requests:
96 #   cpu: 100m
97 #   memory: 128Mi
98
99 nodeSelector: {}
100
101 tolerations: []
102
103 affinity: {}
104