vaibhavjayas | ea9aee0 | 2018-08-31 06:22:26 +0000 | [diff] [blame] | 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 | |
vitalied | 1e5876c | 2018-03-29 10:24:27 -0500 | [diff] [blame] | 15 | ################################################################# |
| 16 | # Global configuration defaults. |
| 17 | ################################################################# |
| 18 | global: |
| 19 | nodePortPrefix: 302 |
vitalied | 1e5876c | 2018-03-29 10:24:27 -0500 | [diff] [blame] | 20 | persistence: {} |
| 21 | repository: nexus3.onap.org:10001 |
| 22 | |
| 23 | |
| 24 | ################################################################# |
| 25 | # Application configuration defaults. |
| 26 | ################################################################# |
| 27 | |
| 28 | #repository: mysql |
| 29 | repository: nexus3.onap.org:10001 |
| 30 | image: adfinissygroup/k8s-mariadb-galera-centos:v002 |
| 31 | imageInit: busybox |
| 32 | pullPolicy: IfNotPresent |
| 33 | |
| 34 | # application configuration |
| 35 | config: |
| 36 | mariadbRootPassword: secretpassword |
| 37 | userName: my-user |
| 38 | userPassword: my-password |
| 39 | mysqlDatabase: my-database |
| 40 | |
| 41 | # default number of instances in the StatefulSet |
| 42 | replicaCount: 3 |
| 43 | |
| 44 | nodeSelector: {} |
| 45 | |
| 46 | affinity: {} |
| 47 | |
| 48 | # probe configuration parameters |
| 49 | liveness: |
| 50 | initialDelaySeconds: 30 |
| 51 | periodSeconds: 10 |
| 52 | timeoutSeconds: 5 |
| 53 | # necessary to disable liveness probe when setting breakpoints |
| 54 | # in debugger so K8s doesn't restart unresponsive container |
| 55 | enabled: true |
| 56 | |
| 57 | readiness: |
| 58 | initialDelaySeconds: 15 |
| 59 | periodSeconds: 10 |
| 60 | |
| 61 | ## Persist data to a persitent volume |
| 62 | persistence: |
| 63 | enabled: false |
| 64 | |
| 65 | ## A manually managed Persistent Volume and Claim |
| 66 | ## Requires persistence.enabled: true |
| 67 | ## If defined, PVC must be created manually before volume will be bound |
| 68 | # existingClaim: |
| 69 | volumeReclaimPolicy: Retain |
| 70 | |
| 71 | ## database data Persistent Volume Storage Class |
| 72 | ## If defined, storageClassName: <storageClass> |
| 73 | ## If set to "-", storageClassName: "", which disables dynamic provisioning |
| 74 | ## If undefined (the default) or set to null, no storageClassName spec is |
| 75 | ## set, choosing the default provisioner. (gp2 on AWS, standard on |
| 76 | ## GKE, AWS & OpenStack) |
| 77 | ## |
| 78 | # storageClass: "-" |
| 79 | accessMode: ReadWriteOnce |
| 80 | size: 2Gi |
| 81 | |
| 82 | |
| 83 | service: |
| 84 | internalPort: 3306 |
| 85 | name: mariadb-galera |
BorislavG | 1ffbd99 | 2018-04-24 07:56:27 +0000 | [diff] [blame] | 86 | portName: mariadb-galera |
vitalied | 1e5876c | 2018-03-29 10:24:27 -0500 | [diff] [blame] | 87 | sstPort: 4444 |
| 88 | sstName: sst |
| 89 | replicationPort: 4567 |
| 90 | replicationName: replication |
| 91 | istPort: 4568 |
| 92 | istName: ist |
| 93 | |
| 94 | ingress: |
| 95 | enabled: false |
| 96 | |
| 97 | |
| 98 | ## Configure MariaDB-Galera with a custom my.cnf file |
| 99 | ## ref: https://mariadb.com/kb/en/mariadb/configuring-mariadb-with-mycnf/#example-of-configuration-file |
| 100 | ## |
| 101 | externalConfig: {} |
| 102 | # externalConfig: |- |
| 103 | # [mysqld] |
| 104 | # innodb_buffer_pool_size=2G |
| 105 | |
| 106 | #resources: {} |
| 107 | # We usually recommend not to specify default resources and to leave this as a conscious |
| 108 | # choice for the user. This also increases chances charts run on environments with little |
| 109 | # resources, such as Minikube. If you do want to specify resources, uncomment the following |
| 110 | # lines, adjust them as necessary, and remove the curly braces after 'resources:'. |
| 111 | # |
| 112 | # Example: |
| 113 | # Configure resource requests and limits |
| 114 | # ref: http://kubernetes.io/docs/user-guide/compute-resources/ |
| 115 | # Minimum memory for development is 2 CPU cores and 4GB memory |
| 116 | # Minimum memory for production is 4 CPU cores and 8GB memory |
| 117 | resources: |
| 118 | limits: |
| 119 | cpu: 2 |
| 120 | memory: 4Gi |
| 121 | requests: |
| 122 | cpu: 2 |
| 123 | memory: 4Gi |
| 124 | |
| 125 | # Name for mariadb-galera cluster - should be unique accross all projects or other clusters |
| 126 | nameOverride: mariadb-galera |
| 127 | |
| 128 | # 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] | 129 | #dnsnameOverride: mariadb-galera |