Merge "[AAI] Add model-loader tracing config"
[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   mariadbGalera:
20     nameOverride: mariadb-galera
21     servicePort: 3306
22     # set these two values if you want to access an 'out of ONAP' mariadb
23     # userRootPassword: some-password
24     # userRootSecret: some-secret-name
25     # userRootSecretKey: password
26
27 #################################################################
28 # Secrets metaconfig
29 #################################################################
30 secrets:
31   - uid: root-password
32     type: password
33     externalSecret: '{{ tpl (ternary (default "" .Values.mariadbGalera.userRootSecret) (default (include "mariadbInit.mariadbClusterSecret" .) .Values.global.mariadbGalera.userRootSecret) (not (empty (default "" .Values.mariadbGalera.serviceName)))) . }}'
34     password: '{{ tpl (ternary (default "" .Values.mariadbGalera.userRootPassword) (default "" .Values.global.mariadbGalera.userRootPassword) (not (empty (default "" .Values.mariadbGalera.serviceName)))) . }}'
35   - uid: '{{ .Values.config.mysqlDatabase }}'
36     type: basicAuth
37     externalSecret: '{{ tpl (default "" .Values.config.userCredentialsExternalSecret) . }}'
38     login: '{{ .Values.config.userName }}'
39     password: '{{ .Values.config.userPassword }}'
40     passwordPolicy: required
41
42 #################################################################
43 # Application configuration defaults.
44 #################################################################
45
46 pullPolicy: IfNotPresent
47
48 # These two values are used to supply commands that are run after the DB is created.
49 # Components using the shared DB can either pass a string which has a set of commands
50 # or a config map that contains a shell script. If both are specified only the config
51 # map will be executed. For reference, please see the VID components for config map
52 dbScript: ""
53 dbScriptConfigMap: ""
54
55 # Set it if you want to change the name of the different components
56 # nameOverride:
57
58 mariadbGalera: {}
59 #  serviceName: some-name
60 #  containerName: some-name
61 #  servicePort: 3306
62 #  userRootPassword: some-password
63 #  userRootSecret: some-secret-name
64 #  userRootSecretKey: password
65
66 # These are default settings, required for a chart compilation with "local" cluster
67 # setting. These values need to be overwritten in the component's values.yaml, e.g.
68 # global:
69 #   mariadbGalera: &mariadbGalera
70 #     #This flag allows SO to instantiate its own mariadb-galera cluster
71 #     localCluster: true
72 #     service: nbi-galera
73 #     internalPort: 3306
74 #     nameOverride: nbi-galera
75 # mariadb-init:
76 #   mariadb-galera:
77 #     nameOverride: nbi-galera
78 #     service:
79 #       internalPort: 3306
80 mariadb-galera:
81   service:
82     internalPort: 3306
83   nameOverride: mariadb-galera
84   mariadbOperator:
85     galera:
86       enabled: false
87
88 config:
89   userPassword: Ci@shsOd3pky1Vji
90   userName: u5WZ1GMSIS1wHZF
91   # set this value if you would like to use external secret instead of providing a password
92   # userCredentialsExternalsecret: some-secret-name
93   mysqlDatabase: ynsaUCru6mUNwGal
94   mysqlAdditionalDatabases: {}
95   # add addtional dabases
96   # this is an dict
97   # Example:
98   # mysqlAdditionalDatabases:
99   #   dbOne:
100   #     user: one
101   #     password: pwd1
102   #     externalSecret: some-secret-name
103   #   dbTwo:
104   #     user: two
105   #     password: pwd2
106   #     externalSecret: some-secret-name
107   config_map: default
108
109 nodeSelector: {}
110
111 affinity: {}
112
113 #resources: {}
114   # We usually recommend not to specify default resources and to leave this as a conscious
115   # choice for the user. This also increases chances charts run on environments with little
116   # resources, such as Minikube. If you do want to specify resources, uncomment the following
117   # lines, adjust them as necessary, and remove the curly braces after 'resources:'.
118   #
119   # Example:
120   # Configure resource requests and limits
121   # ref: http://kubernetes.io/docs/user-guide/compute-resources/
122   # Minimum memory for development is 2 CPU cores and 4GB memory
123   # Minimum memory for production is 4 CPU cores and 8GB memory
124 flavor: small
125 resources:
126   small:
127     limits:
128       cpu: "100m"
129       memory: "500Mi"
130     requests:
131       cpu: "10m"
132       memory: "10Mi"
133   large:
134     limits:
135       cpu: "200m"
136       memory: "500Mi"
137     requests:
138       cpu: "20m"
139       memory: "20Mi"
140   unlimited: {}
141
142 #Pods Service Account
143 serviceAccount:
144   nameOverride: mariadb-init
145   roles:
146     - read
147
148 wait_for_job_container:
149   containers:
150     - '{{ include "common.name" . }}'
151
152 readinessCheck:
153   wait_for:
154     services:
155     - '{{ include "common.mariadbService" . }}'