blob: c0beb6fd228f75b1ecce23ce448ccce671bc2352 [file] [log] [blame]
Mike Elliott13fed112018-02-28 08:33:33 -05001#################################################################
2# Global configuration defaults.
3#################################################################
4global:
5 nodePortPrefix: 302
6 repositorySecret: eyJuZXh1czMub25hcC5vcmc6MTAwMDEiOnsidXNlcm5hbWUiOiJkb2NrZXIiLCJwYXNzd29yZCI6ImRvY2tlciIsImVtYWlsIjoiQCIsImF1dGgiOiJaRzlqYTJWeU9tUnZZMnRsY2c9PSJ9fQ==
7 persistence: {}
8 readinessRepository: oomk8s
9 readinessImage: readiness-check:1.0.0
10
11
12#################################################################
13# Application configuration defaults.
14#################################################################
15
16#repository: mysql
17repository: registry.hub.docker.com
18image: library/mysql:5.7
19pullPolicy: Always
20
21# application configuration
22config:
23 dbRootPassword: openECOMP1.0
24
25# default number of instances
26replicaCount: 1
27
28nodeSelector: {}
29
30affinity: {}
31
32# probe configuration parameters
33liveness:
34 initialDelaySeconds: 30
35 periodSeconds: 10
36 timeoutSeconds: 5
37 # necessary to disable liveness probe when setting breakpoints
38 # in debugger so K8s doesn't restart unresponsive container
39 enabled: true
40
41readiness:
42 initialDelaySeconds: 5
43 periodSeconds: 10
44
45## Persist data to a persitent volume
46persistence:
47 enabled: false
48
49 ## A manually managed Persistent Volume and Claim
50 ## Requires persistence.enabled: true
51 ## If defined, PVC must be created manually before volume will be bound
52 # existingClaim:
53 volumeReclaimPolicy: Retain
54
55 ## database data Persistent Volume Storage Class
56 ## If defined, storageClassName: <storageClass>
57 ## If set to "-", storageClassName: "", which disables dynamic provisioning
58 ## If undefined (the default) or set to null, no storageClassName spec is
59 ## set, choosing the default provisioner. (gp2 on AWS, standard on
60 ## GKE, AWS & OpenStack)
61 accessMode: ReadWriteMany
62 size: 1Gi
63 mountPath: /dockerdata-nfs
64 mountSubPath: mysql/data
65
66service:
67 name: mysql
68 internalPort: 3306
69 # nfs provisioner ports
70 nfsPort: 2049
71 mountdPort: 20048
72 rpcbindPort: 111
73 rpcbindUdpPort: 111
74
75ingress:
76 enabled: false
77
78resources: {}
79 # We usually recommend not to specify default resources and to leave this as a conscious
80 # choice for the user. This also increases chances charts run on environments with little
81 # resources, such as Minikube. If you do want to specify resources, uncomment the following
82 # lines, adjust them as necessary, and remove the curly braces after 'resources:'.
83 #
84 # Example:
85 # Configure resource requests and limits
86 # ref: http://kubernetes.io/docs/user-guide/compute-resources/
87 # Minimum memory for development is 2 CPU cores and 4GB memory
88 # Minimum memory for production is 4 CPU cores and 8GB memory
89#resources:
90# limits:
91# cpu: 2
92# memory: 4Gi
93# requests:
94# cpu: 2
95# memory: 4Gi
96
97#################################################################
98# Sidecar Configuration.
99#
100# xtrabackup configuration defaults.
101#################################################################
102xtrabackupRepository: gcr.io/google-samples
103xtrabackupImage: xtrabackup:1.0
104xtrabackup:
105 internalPort: 3307
106
107nfsprovisionerRepository: quay.io
108nfsprovisionerImage: kubernetes_incubator/nfs-provisioner:v1.0.8
109nfsprovisionerPrefix: mysql
110
111sdnctlPrefix: mysql