Fixes for ric-aux
[it/dep.git] / ric-xapps / 90-xApps / helm / xapp-admin / 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 global:
22   # modify this section to point to your local testing settings
23   repository: "${__RUNRICENV_DOCKER_HOST__}:${__RUNRICENV_DOCKER_PORT__}"
24   repositoryCred:
25     user: "${__RUNRICENV_DOCKER_USER__}"
26     password: "${__RUNRICENV_DOCKER_PASS__}"
27   image:
28     pullPolicy: IfNotPresent
29
30 ricplt:
31   # This section is reserved for values imported from RIC Platform charts
32   
33
34 ricapp:
35   # This section is for xapp.  Templates to be resolved from xApp descriptor
36   replicaCount: 1
37   xappname: &anchor-xappname xapp-admin
38
39   # # the name of the process that indicates the liveness of the component
40   livenessprocessname: adm-ctrl-xapp
41
42   image:
43     name: test/xapp-admin
44     tag: latest
45
46   nameOverride: ""
47   fullnameOverride: ""
48
49   service:
50     enabled: false
51
52   # to be provided as property file
53   appconfigpath: /opt/etc/xapp
54   appconfig:
55     # to be present as appconfigpath/propfile1
56     propfile1: |
57       prop1.v1="propvalue1.1"
58       prop1.v2="propvalue1.2"
59     propfile2: "propvalue2"
60
61   # to be provided as env variables
62   appenv:
63     NAME: *anchor-xappname
64     RMR_RTG_SVC: "127.0.0.2"
65     NAME: "ADM_CTRL_XAPP2"
66     THREADS: "2"
67     VERBOSE: "1"
68     PORT: "tcp:4561"
69
70   # secret
71   appsecretpath: /opt/etc/kube
72   appsecret:
73     username: myusername
74     password: mypassword
75
76   resources:
77     limits:
78       cpu: 100m
79       memory: 128Mi
80     requests:
81       cpu: 100m
82       memory: 128Mi
83
84   nodeSelector: {}
85
86   tolerations: []
87
88   affinity: {}
89