vaibhavjayas | ea9aee0 | 2018-08-31 06:22:26 +0000 | [diff] [blame] | 1 | # Copyright © 2018 Amdocs, Bell Canada |
Krzysztof Opasiak | 01c975b | 2019-12-16 17:42:38 +0100 | [diff] [blame] | 2 | # Copyright © 2019 Samsung Electronics |
vaibhavjayas | ea9aee0 | 2018-08-31 06:22:26 +0000 | [diff] [blame] | 3 | # |
| 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 | |
vitalied | 1e5876c | 2018-03-29 10:24:27 -0500 | [diff] [blame] | 16 | ################################################################# |
Krzysztof Opasiak | 01c975b | 2019-12-16 17:42:38 +0100 | [diff] [blame] | 17 | # Secrets metaconfig |
| 18 | ################################################################# |
| 19 | secrets: |
Krzysztof Opasiak | a789c1a | 2020-01-22 00:06:32 +0100 | [diff] [blame] | 20 | - uid: '{{ include "common.mariadb.secret.rootPassUID" . }}' |
Krzysztof Opasiak | 01c975b | 2019-12-16 17:42:38 +0100 | [diff] [blame] | 21 | type: password |
| 22 | externalSecret: '{{ tpl (default "" .Values.config.mariadbRootPasswordExternalSecret) . }}' |
| 23 | password: '{{ .Values.config.mariadbRootPassword }}' |
Krzysztof Opasiak | a789c1a | 2020-01-22 00:06:32 +0100 | [diff] [blame] | 24 | - uid: '{{ include "common.mariadb.secret.userCredentialsUID" . }}' |
Krzysztof Opasiak | 01c975b | 2019-12-16 17:42:38 +0100 | [diff] [blame] | 25 | type: basicAuth |
| 26 | externalSecret: '{{ tpl (default "" .Values.config.userCredentialsExternalSecret) . }}' |
| 27 | login: '{{ .Values.config.userName }}' |
| 28 | password: '{{ .Values.config.userPassword }}' |
| 29 | |
| 30 | |
| 31 | ################################################################# |
vitalied | 1e5876c | 2018-03-29 10:24:27 -0500 | [diff] [blame] | 32 | # Global configuration defaults. |
| 33 | ################################################################# |
| 34 | global: |
| 35 | nodePortPrefix: 302 |
Akansha Dua | 3fb95ef | 2019-09-04 11:47:43 +0000 | [diff] [blame] | 36 | persistence: |
| 37 | mountPath: /dockerdata-nfs |
| 38 | backup: |
| 39 | mountPath: /dockerdata-nfs/backup |
| 40 | |
vitalied | 1e5876c | 2018-03-29 10:24:27 -0500 | [diff] [blame] | 41 | repository: nexus3.onap.org:10001 |
| 42 | |
Sylvain Desbureaux | 1694e1d | 2020-08-21 09:58:25 +0200 | [diff] [blame^] | 43 | readinessImage: onap/oom/readiness:3.0.1 |
tringuyen | eb9eb59 | 2020-04-01 17:51:06 +0000 | [diff] [blame] | 44 | busyboxImage: busybox:1.30 |
| 45 | busyboxRepository: docker.io |
| 46 | # kubeclt image |
| 47 | kubectlImage: "bitnami/kubectl:1.15" |
vitalied | 1e5876c | 2018-03-29 10:24:27 -0500 | [diff] [blame] | 48 | |
| 49 | ################################################################# |
| 50 | # Application configuration defaults. |
| 51 | ################################################################# |
| 52 | |
| 53 | #repository: mysql |
| 54 | repository: nexus3.onap.org:10001 |
| 55 | image: adfinissygroup/k8s-mariadb-galera-centos:v002 |
Sylvain Desbureaux | 524c878 | 2019-11-08 17:36:02 +0100 | [diff] [blame] | 56 | backupImage: library/mariadb:10.1.38 |
vitalied | 1e5876c | 2018-03-29 10:24:27 -0500 | [diff] [blame] | 57 | imageInit: busybox |
| 58 | pullPolicy: IfNotPresent |
| 59 | |
| 60 | # application configuration |
| 61 | config: |
Krzysztof Opasiak | 01c975b | 2019-12-16 17:42:38 +0100 | [diff] [blame] | 62 | # .mariadbRootPasswordExternalSecret: 'some-external-secret' |
Krzysztof Opasiak | 2628581 | 2020-04-01 22:44:44 +0200 | [diff] [blame] | 63 | # mariadbRootPassword: secretpassword |
Krzysztof Opasiak | 01c975b | 2019-12-16 17:42:38 +0100 | [diff] [blame] | 64 | # .userCredentialsExternalSecret: 'some-external-secret' |
vitalied | 1e5876c | 2018-03-29 10:24:27 -0500 | [diff] [blame] | 65 | userName: my-user |
Krzysztof Opasiak | 3ed9c94 | 2020-01-23 01:03:41 +0100 | [diff] [blame] | 66 | # userPassword: my-password |
| 67 | # mysqlDatabase: my-database |
vitalied | 1e5876c | 2018-03-29 10:24:27 -0500 | [diff] [blame] | 68 | |
| 69 | # default number of instances in the StatefulSet |
| 70 | replicaCount: 3 |
| 71 | |
| 72 | nodeSelector: {} |
| 73 | |
| 74 | affinity: {} |
| 75 | |
| 76 | # probe configuration parameters |
| 77 | liveness: |
| 78 | initialDelaySeconds: 30 |
| 79 | periodSeconds: 10 |
| 80 | timeoutSeconds: 5 |
| 81 | # necessary to disable liveness probe when setting breakpoints |
| 82 | # in debugger so K8s doesn't restart unresponsive container |
| 83 | enabled: true |
| 84 | |
| 85 | readiness: |
| 86 | initialDelaySeconds: 15 |
| 87 | periodSeconds: 10 |
yangyan | e63c921 | 2019-05-22 13:04:15 +0800 | [diff] [blame] | 88 | timeoutSeconds: 5 |
vitalied | 1e5876c | 2018-03-29 10:24:27 -0500 | [diff] [blame] | 89 | |
| 90 | ## Persist data to a persitent volume |
| 91 | persistence: |
pramod | 47b1b82 | 2018-08-28 15:41:45 +0000 | [diff] [blame] | 92 | enabled: true |
vitalied | 1e5876c | 2018-03-29 10:24:27 -0500 | [diff] [blame] | 93 | |
| 94 | ## A manually managed Persistent Volume and Claim |
| 95 | ## Requires persistence.enabled: true |
| 96 | ## If defined, PVC must be created manually before volume will be bound |
| 97 | # existingClaim: |
| 98 | volumeReclaimPolicy: Retain |
| 99 | |
| 100 | ## database data Persistent Volume Storage Class |
| 101 | ## If defined, storageClassName: <storageClass> |
| 102 | ## If set to "-", storageClassName: "", which disables dynamic provisioning |
| 103 | ## If undefined (the default) or set to null, no storageClassName spec is |
| 104 | ## set, choosing the default provisioner. (gp2 on AWS, standard on |
| 105 | ## GKE, AWS & OpenStack) |
| 106 | ## |
| 107 | # storageClass: "-" |
Sylvain Desbureaux | 2285a28 | 2019-08-29 16:17:16 +0200 | [diff] [blame] | 108 | accessMode: ReadWriteOnce |
vitalied | 1e5876c | 2018-03-29 10:24:27 -0500 | [diff] [blame] | 109 | size: 2Gi |
pramod | 47b1b82 | 2018-08-28 15:41:45 +0000 | [diff] [blame] | 110 | mountPath: /dockerdata-nfs |
| 111 | mountSubPath: "mariadb-galera/data" |
| 112 | mysqlPath: /var/lib/mysql |
Akansha Dua | 3fb95ef | 2019-09-04 11:47:43 +0000 | [diff] [blame] | 113 | backup: |
Sylvain Desbureaux | 524c878 | 2019-11-08 17:36:02 +0100 | [diff] [blame] | 114 | mountPath: /dockerdata-nfs/backup{{- if or (or .Values.storageClassOverride .Values.persistence.storageClass) .Values.global.persistence.storageClass -}} |
vitalied | 1e5876c | 2018-03-29 10:24:27 -0500 | [diff] [blame] | 115 | |
| 116 | service: |
| 117 | internalPort: 3306 |
| 118 | name: mariadb-galera |
BorislavG | 1ffbd99 | 2018-04-24 07:56:27 +0000 | [diff] [blame] | 119 | portName: mariadb-galera |
vitalied | 1e5876c | 2018-03-29 10:24:27 -0500 | [diff] [blame] | 120 | sstPort: 4444 |
Mike Elliott | 4c88b2d | 2018-09-13 09:32:08 -0400 | [diff] [blame] | 121 | sstPortName: sst |
vitalied | 1e5876c | 2018-03-29 10:24:27 -0500 | [diff] [blame] | 122 | replicationPort: 4567 |
| 123 | replicationName: replication |
| 124 | istPort: 4568 |
Mike Elliott | 4c88b2d | 2018-09-13 09:32:08 -0400 | [diff] [blame] | 125 | istPortName: ist |
vitalied | 1e5876c | 2018-03-29 10:24:27 -0500 | [diff] [blame] | 126 | |
| 127 | ingress: |
| 128 | enabled: false |
| 129 | |
| 130 | |
| 131 | ## Configure MariaDB-Galera with a custom my.cnf file |
| 132 | ## ref: https://mariadb.com/kb/en/mariadb/configuring-mariadb-with-mycnf/#example-of-configuration-file |
| 133 | ## |
Krzysztof Opasiak | 8953675 | 2020-05-16 00:25:05 +0200 | [diff] [blame] | 134 | externalConfig: "" |
vitalied | 1e5876c | 2018-03-29 10:24:27 -0500 | [diff] [blame] | 135 | # externalConfig: |- |
| 136 | # [mysqld] |
| 137 | # innodb_buffer_pool_size=2G |
| 138 | |
| 139 | #resources: {} |
| 140 | # We usually recommend not to specify default resources and to leave this as a conscious |
| 141 | # choice for the user. This also increases chances charts run on environments with little |
| 142 | # resources, such as Minikube. If you do want to specify resources, uncomment the following |
| 143 | # lines, adjust them as necessary, and remove the curly braces after 'resources:'. |
| 144 | # |
| 145 | # Example: |
| 146 | # Configure resource requests and limits |
| 147 | # ref: http://kubernetes.io/docs/user-guide/compute-resources/ |
| 148 | # Minimum memory for development is 2 CPU cores and 4GB memory |
| 149 | # Minimum memory for production is 4 CPU cores and 8GB memory |
| 150 | resources: |
Sylvain Desbureaux | ff702c7 | 2018-11-23 14:25:57 +0100 | [diff] [blame] | 151 | small: |
| 152 | limits: |
| 153 | cpu: 2 |
| 154 | memory: 4Gi |
| 155 | requests: |
| 156 | cpu: 1 |
| 157 | memory: 2Gi |
| 158 | large: |
| 159 | limits: |
| 160 | cpu: 2 |
| 161 | memory: 4Gi |
| 162 | requests: |
| 163 | cpu: 1 |
| 164 | memory: 2Gi |
| 165 | unlimited: {} |
vitalied | 1e5876c | 2018-03-29 10:24:27 -0500 | [diff] [blame] | 166 | |
| 167 | # Name for mariadb-galera cluster - should be unique accross all projects or other clusters |
| 168 | nameOverride: mariadb-galera |
| 169 | |
| 170 | # DNS name for mariadb-galera cluster - should be unique accross all projects other clusters |
BorislavG | 1ffbd99 | 2018-04-24 07:56:27 +0000 | [diff] [blame] | 171 | #dnsnameOverride: mariadb-galera |
Akansha Dua | 3fb95ef | 2019-09-04 11:47:43 +0000 | [diff] [blame] | 172 | |
| 173 | backup: |
| 174 | enabled: false |
| 175 | cron: "00 00 * * *" |
| 176 | retentionPeriod: 3 |