Merge "[AAF] Use global storage templates for PVC"
[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   readinessRepository: oomk8s
21   readinessImage: readiness-check:2.0.2
22   mariadbGalera:
23     nameOverride: mariadb-galera
24     servicePort: 3306
25     # set these two values if you want to access an 'out of ONAP' mariadb
26     userRootSecret: default
27     userRootSecretKey: db-root-password
28
29 #################################################################
30 # Application configuration defaults.
31 #################################################################
32
33 image: mariadb:10.1.38
34 pullPolicy: IfNotPresent
35
36 # Set it if you want to change the name of the different components
37 # nameOverride:
38
39 config:
40   userPassword: Ci@shsOd3pky1Vji
41   userName: u5WZ1GMSIS1wHZF
42   mysqlDatabase: ynsaUCru6mUNwGal
43   mysqlAdditionalDatabases: {}
44   # add addtional dabases
45   # this is an dict
46   # Example:
47   # mysqlAdditionalDatabases:
48   #   dbOne:
49   #     user: one
50   #     password: pwd1
51   #   dbTwo:
52   #     user: two
53   #     password: pwd2
54   config_map: default
55
56 nodeSelector: {}
57
58 affinity: {}
59
60 #resources: {}
61   # We usually recommend not to specify default resources and to leave this as a conscious
62   # choice for the user. This also increases chances charts run on environments with little
63   # resources, such as Minikube. If you do want to specify resources, uncomment the following
64   # lines, adjust them as necessary, and remove the curly braces after 'resources:'.
65   #
66   # Example:
67   # Configure resource requests and limits
68   # ref: http://kubernetes.io/docs/user-guide/compute-resources/
69   # Minimum memory for development is 2 CPU cores and 4GB memory
70   # Minimum memory for production is 4 CPU cores and 8GB memory
71 flavor: small
72 resources:
73   small:
74     limits:
75       cpu: 100m
76       memory: 500Mi
77     requests:
78       cpu: 10m
79       memory: 10Mi
80   large:
81     limits:
82       cpu: 200m
83       memory: 500Mi
84     requests:
85       cpu: 20m
86       memory: 20Mi
87   unlimited: {}