c525fec5972d5e2ca1a2f90eae73b81fd1b44dab
[oom.git] / kubernetes / clamp / charts / mariadb / values.yaml
1 #################################################################
2 # Global configuration defaults.
3 #################################################################
4 global: # global defaults
5   nodePortPrefix: 302
6   repositorySecret: eyJuZXh1czMub25hcC5vcmc6MTAwMDEiOnsidXNlcm5hbWUiOiJkb2NrZXIiLCJwYXNzd29yZCI6ImRvY2tlciIsImVtYWlsIjoiQCIsImF1dGgiOiJaRzlqYTJWeU9tUnZZMnRsY2c9PSJ9fQ==
7
8   persistence: {}
9
10 # application image
11 repository: nexus3.onap.org:10001
12 image: mariadb:10.1.11
13 pullPolicy: Always
14
15 #################################################################
16 # Application configuration defaults.
17 #################################################################
18 config:
19   mysqlPassword: strong_pitchou
20
21 # default number of instances
22 replicaCount: 1
23
24 nodeSelector: {}
25
26 affinity: {}
27
28 # probe configuration parameters
29 liveness:
30   initialDelaySeconds: 10
31   periodSeconds: 10
32   # necessary to disable liveness probe when setting breakpoints
33   # in debugger so K8s doesn't restart unresponsive container
34   enabled: true
35  
36 readiness:
37   initialDelaySeconds: 10
38   periodSeconds: 10
39
40 ## Persist data to a persitent volume
41 persistence:
42   enabled: true
43
44   ## A manually managed Persistent Volume and Claim
45   ## Requires persistence.enabled: true
46   ## If defined, PVC must be created manually before volume will be bound
47   # existingClaim:
48   volumeReclaimPolicy: Retain
49
50   ## database data Persistent Volume Storage Class
51   ## If defined, storageClassName: <storageClass>
52   ## If set to "-", storageClassName: "", which disables dynamic provisioning
53   ## If undefined (the default) or set to null, no storageClassName spec is
54   ##   set, choosing the default provisioner.  (gp2 on AWS, standard on
55   ##   GKE, AWS & OpenStack)
56   ##
57   # storageClass: "-"
58   accessMode: ReadWriteMany
59   size: 2Gi
60   mountPath: /dockerdata-nfs
61   mountSubPath: clamp/mariadb/data
62
63 service:
64   type: ClusterIP
65   name: mariadb
66   internalPort: 3306
67   externalPort: 3306
68
69
70 ingress:
71   enabled: false
72
73
74 resources: {}
75   # We usually recommend not to specify default resources and to leave this as a conscious
76   # choice for the user. This also increases chances charts run on environments with little
77   # resources, such as Minikube. If you do want to specify resources, uncomment the following
78   # lines, adjust them as necessary, and remove the curly braces after 'resources:'.
79   #
80   # Example:
81   # Configure resource requests and limits
82   # ref: http://kubernetes.io/docs/user-guide/compute-resources/
83   # Minimum memory for development is 2 CPU cores and 4GB memory
84   # Minimum memory for production is 4 CPU cores and 8GB memory
85 #resources:
86 #  limits:
87 #    cpu: 2
88 #    memory: 4Gi
89 #  requests:
90 #    cpu: 2
91 #    memory: 4Gi