Merge "clamphealth check"
[oom.git] / kubernetes / policy / charts / mariadb / values.yaml
1 # Copyright © 2017 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   nodePortPrefix: 302
20   persistence: {}
21
22 #################################################################
23 # Application configuration defaults.
24 #################################################################
25 # application image
26 repository: nexus3.onap.org:10001
27 image: mariadb:10.2.14
28 pullPolicy: Always
29
30 # flag to enable debugging - application support required
31 debugEnabled: false
32
33 # application configuration
34 # Example:
35 config:
36   mysqlRootPassword: secret
37   mysqlUserName: policy_user
38   mysqlPassword: policy_user
39 # default number of instances
40 replicaCount: 1
41
42 nodeSelector: {}
43
44 affinity: {}
45
46 # probe configuration parameters
47 liveness:
48   initialDelaySeconds: 10
49   periodSeconds: 10
50   # necessary to disable liveness probe when setting breakpoints
51   # in debugger so K8s doesn't restart unresponsive container
52   enabled: true
53
54 readiness:
55   initialDelaySeconds: 10
56   periodSeconds: 10
57
58 ## Persist data to a persitent volume
59 persistence:
60   enabled: true
61   volumeReclaimPolicy: Retain
62   accessMode: ReadWriteMany
63   size: 2Gi
64   mountPath: /dockerdata-nfs
65   mountSubPath: mariadb/data
66
67 service:
68   type: ClusterIP
69   name: policydb
70   portName: policydb
71   internalPort: 3306
72
73 ingress:
74   enabled: false
75
76 resources: {}