blob: 1dcc88c3b5354e0aabbd334ae1da58eb16042598 [file] [log] [blame]
vaibhavjayasea9aee02018-08-31 06:22:26 +00001# Copyright © 2018 Amdocs, Bell Canada
Krzysztof Opasiak01c975b2019-12-16 17:42:38 +01002# Copyright © 2019 Samsung Electronics
vaibhavjayasea9aee02018-08-31 06:22:26 +00003#
4# Licensed under the Apache License, Version 2.0 (the "License");
5# you may not use this file except in compliance with the License.
6# You may obtain a copy of the License at
7#
8# http://www.apache.org/licenses/LICENSE-2.0
9#
10# Unless required by applicable law or agreed to in writing, software
11# distributed under the License is distributed on an "AS IS" BASIS,
12# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13# See the License for the specific language governing permissions and
14# limitations under the License.
15
vitalied1e5876c2018-03-29 10:24:27 -050016#################################################################
Krzysztof Opasiak01c975b2019-12-16 17:42:38 +010017# Secrets metaconfig
18#################################################################
19secrets:
Krzysztof Opasiaka789c1a2020-01-22 00:06:32 +010020 - uid: '{{ include "common.mariadb.secret.rootPassUID" . }}'
Krzysztof Opasiak01c975b2019-12-16 17:42:38 +010021 type: password
22 externalSecret: '{{ tpl (default "" .Values.config.mariadbRootPasswordExternalSecret) . }}'
23 password: '{{ .Values.config.mariadbRootPassword }}'
Krzysztof Opasiaka789c1a2020-01-22 00:06:32 +010024 - uid: '{{ include "common.mariadb.secret.userCredentialsUID" . }}'
Krzysztof Opasiak01c975b2019-12-16 17:42:38 +010025 type: basicAuth
26 externalSecret: '{{ tpl (default "" .Values.config.userCredentialsExternalSecret) . }}'
27 login: '{{ .Values.config.userName }}'
28 password: '{{ .Values.config.userPassword }}'
29
30
31#################################################################
vitalied1e5876c2018-03-29 10:24:27 -050032# Global configuration defaults.
33#################################################################
34global:
35 nodePortPrefix: 302
Akansha Dua3fb95ef2019-09-04 11:47:43 +000036 persistence:
37 mountPath: /dockerdata-nfs
38 backup:
39 mountPath: /dockerdata-nfs/backup
40
vitalied1e5876c2018-03-29 10:24:27 -050041 repository: nexus3.onap.org:10001
42
Akansha Dua3fb95ef2019-09-04 11:47:43 +000043 readinessRepository: oomk8s
44 readinessImage: readiness-check:2.0.2
45
vitalied1e5876c2018-03-29 10:24:27 -050046
47#################################################################
48# Application configuration defaults.
49#################################################################
50
51#repository: mysql
52repository: nexus3.onap.org:10001
53image: adfinissygroup/k8s-mariadb-galera-centos:v002
Sylvain Desbureaux524c8782019-11-08 17:36:02 +010054backupImage: library/mariadb:10.1.38
vitalied1e5876c2018-03-29 10:24:27 -050055imageInit: busybox
56pullPolicy: IfNotPresent
57
58# application configuration
59config:
Krzysztof Opasiak01c975b2019-12-16 17:42:38 +010060 # .mariadbRootPasswordExternalSecret: 'some-external-secret'
vitalied1e5876c2018-03-29 10:24:27 -050061 mariadbRootPassword: secretpassword
Krzysztof Opasiak01c975b2019-12-16 17:42:38 +010062 # .userCredentialsExternalSecret: 'some-external-secret'
vitalied1e5876c2018-03-29 10:24:27 -050063 userName: my-user
64 userPassword: my-password
65 mysqlDatabase: my-database
66
67# default number of instances in the StatefulSet
68replicaCount: 3
69
70nodeSelector: {}
71
72affinity: {}
73
74# probe configuration parameters
75liveness:
76 initialDelaySeconds: 30
77 periodSeconds: 10
78 timeoutSeconds: 5
79 # necessary to disable liveness probe when setting breakpoints
80 # in debugger so K8s doesn't restart unresponsive container
81 enabled: true
82
83readiness:
84 initialDelaySeconds: 15
85 periodSeconds: 10
yangyane63c9212019-05-22 13:04:15 +080086 timeoutSeconds: 5
vitalied1e5876c2018-03-29 10:24:27 -050087
88## Persist data to a persitent volume
89persistence:
pramod47b1b822018-08-28 15:41:45 +000090 enabled: true
vitalied1e5876c2018-03-29 10:24:27 -050091
92 ## A manually managed Persistent Volume and Claim
93 ## Requires persistence.enabled: true
94 ## If defined, PVC must be created manually before volume will be bound
95 # existingClaim:
96 volumeReclaimPolicy: Retain
97
98 ## database data Persistent Volume Storage Class
99 ## If defined, storageClassName: <storageClass>
100 ## If set to "-", storageClassName: "", which disables dynamic provisioning
101 ## If undefined (the default) or set to null, no storageClassName spec is
102 ## set, choosing the default provisioner. (gp2 on AWS, standard on
103 ## GKE, AWS & OpenStack)
104 ##
105 # storageClass: "-"
Sylvain Desbureaux2285a282019-08-29 16:17:16 +0200106 accessMode: ReadWriteOnce
vitalied1e5876c2018-03-29 10:24:27 -0500107 size: 2Gi
pramod47b1b822018-08-28 15:41:45 +0000108 mountPath: /dockerdata-nfs
109 mountSubPath: "mariadb-galera/data"
110 mysqlPath: /var/lib/mysql
Akansha Dua3fb95ef2019-09-04 11:47:43 +0000111 backup:
Sylvain Desbureaux524c8782019-11-08 17:36:02 +0100112 mountPath: /dockerdata-nfs/backup{{- if or (or .Values.storageClassOverride .Values.persistence.storageClass) .Values.global.persistence.storageClass -}}
vitalied1e5876c2018-03-29 10:24:27 -0500113
114service:
115 internalPort: 3306
116 name: mariadb-galera
BorislavG1ffbd992018-04-24 07:56:27 +0000117 portName: mariadb-galera
vitalied1e5876c2018-03-29 10:24:27 -0500118 sstPort: 4444
Mike Elliott4c88b2d2018-09-13 09:32:08 -0400119 sstPortName: sst
vitalied1e5876c2018-03-29 10:24:27 -0500120 replicationPort: 4567
121 replicationName: replication
122 istPort: 4568
Mike Elliott4c88b2d2018-09-13 09:32:08 -0400123 istPortName: ist
vitalied1e5876c2018-03-29 10:24:27 -0500124
125ingress:
126 enabled: false
127
128
129## Configure MariaDB-Galera with a custom my.cnf file
130## ref: https://mariadb.com/kb/en/mariadb/configuring-mariadb-with-mycnf/#example-of-configuration-file
131##
132externalConfig: {}
133# externalConfig: |-
134 # [mysqld]
135 # innodb_buffer_pool_size=2G
136
137#resources: {}
138 # We usually recommend not to specify default resources and to leave this as a conscious
139 # choice for the user. This also increases chances charts run on environments with little
140 # resources, such as Minikube. If you do want to specify resources, uncomment the following
141 # lines, adjust them as necessary, and remove the curly braces after 'resources:'.
142 #
143 # Example:
144 # Configure resource requests and limits
145 # ref: http://kubernetes.io/docs/user-guide/compute-resources/
146 # Minimum memory for development is 2 CPU cores and 4GB memory
147 # Minimum memory for production is 4 CPU cores and 8GB memory
148resources:
Sylvain Desbureauxff702c72018-11-23 14:25:57 +0100149 small:
150 limits:
151 cpu: 2
152 memory: 4Gi
153 requests:
154 cpu: 1
155 memory: 2Gi
156 large:
157 limits:
158 cpu: 2
159 memory: 4Gi
160 requests:
161 cpu: 1
162 memory: 2Gi
163 unlimited: {}
vitalied1e5876c2018-03-29 10:24:27 -0500164
165# Name for mariadb-galera cluster - should be unique accross all projects or other clusters
166nameOverride: mariadb-galera
167
168# DNS name for mariadb-galera cluster - should be unique accross all projects other clusters
BorislavG1ffbd992018-04-24 07:56:27 +0000169#dnsnameOverride: mariadb-galera
Akansha Dua3fb95ef2019-09-04 11:47:43 +0000170
171backup:
172 enabled: false
173 cron: "00 00 * * *"
174 retentionPeriod: 3