1 # Copyright © 2017 Amdocs, Bell Canada
2 # Modifications Copyright © 2018-2019 AT&T
4 # Licensed under the Apache License, Version 2.0 (the "License");
5 # you may not use this file except in compliance with the License.
6 # You may obtain a copy of the License at
8 # http://www.apache.org/licenses/LICENSE-2.0
10 # Unless required by applicable law or agreed to in writing, software
11 # distributed under the License is distributed on an "AS IS" BASIS,
12 # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13 # See the License for the specific language governing permissions and
14 # limitations under the License.
16 #################################################################
17 # Global configuration defaults.
18 #################################################################
19 global: # global defaults
24 repository: nexus3.onap.org:10001
25 image: mariadb:10.3.12
28 #################################################################
30 #################################################################
34 externalSecret: '{{ tpl (default "" .Values.db.rootCredsExternalSecret) . }}'
35 password: '{{ .Values.db.rootPass }}'
38 externalSecret: '{{ tpl (default "" .Values.db.userCredsExternalSecret) . }}'
39 login: '{{ .Values.db.user }}'
40 password: '{{ .Values.db.password }}'
42 # Application configuration
45 # default number of instances
52 # probe configuration parameters
54 initialDelaySeconds: 10
56 # necessary to disable liveness probe when setting breakpoints
57 # in debugger so K8s doesn't restart unresponsive container
61 initialDelaySeconds: 10
64 ## Persist data to a persitent volume
68 ## A manually managed Persistent Volume and Claim
69 ## Requires persistence.enabled: true
70 ## If defined, PVC must be created manually before volume will be bound
72 volumeReclaimPolicy: Retain
74 ## database data Persistent Volume Storage Class
75 ## If defined, storageClassName: <storageClass>
76 ## If set to "-", storageClassName: "", which disables dynamic provisioning
77 ## If undefined (the default) or set to null, no storageClassName spec is
78 ## set, choosing the default provisioner. (gp2 on AWS, standard on
79 ## GKE, AWS & OpenStack)
82 accessMode: ReadWriteOnce
84 mountPath: /dockerdata-nfs
85 mountSubPath: clamp/mariadb/data
100 # We usually recommend not to specify default resources and to leave this as a conscious
101 # choice for the user. This also increases chances charts run on environments with little
102 # resources, such as Minikube. If you do want to specify resources, uncomment the following
103 # lines, adjust them as necessary, and remove the curly braces after 'resources:'.
106 # Configure resource requests and limits
107 # ref: http://kubernetes.io/docs/user-guide/compute-resources/
108 # Minimum memory for development is 2 CPU cores and 4GB memory
109 # Minimum memory for production is 4 CPU cores and 8GB memory