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