[DCAEMOD] Uses new tpls for repos / images
[oom.git] / kubernetes / common / mariadb-init / values.yaml
1 # Copyright © 2018 Amdocs, Bell Canada
2 #
3 # Licensed under the Apache License, Version 2.0 (the "License");
4 # you may not use this file except in compliance with the License.
5 # You may obtain a copy of the License at
6 #
7 #       http://www.apache.org/licenses/LICENSE-2.0
8 #
9 # Unless required by applicable law or agreed to in writing, software
10 # distributed under the License is distributed on an "AS IS" BASIS,
11 # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
12 # See the License for the specific language governing permissions and
13 # limitations under the License.
14
15 #################################################################
16 # Global configuration defaults.
17 #################################################################
18 global:
19   repository: nexus3.onap.org:10001
20   readinessImage: onap/oom/readiness:3.0.1
21   mariadbGalera:
22     nameOverride: mariadb-galera
23     servicePort: 3306
24     # set these two values if you want to access an 'out of ONAP' mariadb
25     # userRootPassword: some-password
26     # userRootSecret: some-secret-name
27     # userRootSecretKey: password
28
29 #################################################################
30 # Secrets metaconfig
31 #################################################################
32 secrets:
33   - uid: root-password
34     type: password
35     externalSecret: '{{ tpl (ternary (default "" .Values.mariadbGalera.userRootSecret) (default (include "mariadbInit.mariadbClusterSecret" .) .Values.global.mariadbGalera.userRootSecret) (not (empty (default "" .Values.mariadbGalera.serviceName)))) . }}'
36     password: '{{ tpl (ternary (default "" .Values.mariadbGalera.userRootPassword) (default "" .Values.global.mariadbGalera.userRootPassword) (not (empty (default "" .Values.mariadbGalera.serviceName)))) . }}'
37   - uid: '{{ .Values.config.mysqlDatabase }}'
38     type: basicAuth
39     externalSecret: '{{ tpl (default "" .Values.config.userCredentialsExternalSecret) . }}'
40     login: '{{ .Values.config.userName }}'
41     password: '{{ .Values.config.userPassword }}'
42     passwordPolicy: required
43
44 #################################################################
45 # Application configuration defaults.
46 #################################################################
47
48 image: mariadb:10.1.38
49 pullPolicy: IfNotPresent
50
51 # These two values are used to supply commands that are run after the DB is created.
52 # Components using the shared DB can either pass a string which has a set of commands
53 # or a config map that contains a shell script. If both are specified only the config
54 # map will be executed. For reference, please see the VID components for config map
55 dbScript: ""
56 dbScriptConfigMap: ""
57
58 # Set it if you want to change the name of the different components
59 # nameOverride:
60
61 mariadbGalera: {}
62 #  serviceName: some-name
63 #  containerName: some-name
64 #  servicePort: 3306
65 #  userRootPassword: some-password
66 #  userRootSecret: some-secret-name
67 #  userRootSecretKey: password
68
69
70 config:
71   userPassword: Ci@shsOd3pky1Vji
72   userName: u5WZ1GMSIS1wHZF
73   # set this value if you would like to use external secret instead of providing a password
74   # userCredentialsExternalsecret: some-secret-name
75   mysqlDatabase: ynsaUCru6mUNwGal
76   mysqlAdditionalDatabases: {}
77   # add addtional dabases
78   # this is an dict
79   # Example:
80   # mysqlAdditionalDatabases:
81   #   dbOne:
82   #     user: one
83   #     password: pwd1
84   #     externalSecret: some-secret-name
85   #   dbTwo:
86   #     user: two
87   #     password: pwd2
88   #     externalSecret: some-secret-name
89   config_map: default
90
91 nodeSelector: {}
92
93 affinity: {}
94
95 #resources: {}
96   # We usually recommend not to specify default resources and to leave this as a conscious
97   # choice for the user. This also increases chances charts run on environments with little
98   # resources, such as Minikube. If you do want to specify resources, uncomment the following
99   # lines, adjust them as necessary, and remove the curly braces after 'resources:'.
100   #
101   # Example:
102   # Configure resource requests and limits
103   # ref: http://kubernetes.io/docs/user-guide/compute-resources/
104   # Minimum memory for development is 2 CPU cores and 4GB memory
105   # Minimum memory for production is 4 CPU cores and 8GB memory
106 flavor: small
107 resources:
108   small:
109     limits:
110       cpu: 100m
111       memory: 500Mi
112     requests:
113       cpu: 10m
114       memory: 10Mi
115   large:
116     limits:
117       cpu: 200m
118       memory: 500Mi
119     requests:
120       cpu: 20m
121       memory: 20Mi
122   unlimited: {}