SO Rolling upgrade using helm hooks
[oom.git] / kubernetes / so / charts / so-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 # Default values for mariadb.
15 # This is a YAML-formatted file.
16 # Declare variables to be passed into your templates.
17 #################################################################
18 # Global configuration defaults.
19 #################################################################
20 global:
21   nodePortPrefix: 302
22   nodePortPrefixExt: 304
23   repository: nexus3.onap.org:10001
24   readinessRepository: oomk8s
25   readinessImage: readiness-check:2.0.2
26   ubuntuInitRepository: registry.hub.docker.com
27
28 #################################################################
29 # Application configuration defaults.
30 #################################################################
31 # application image
32 repository: nexus3.onap.org:10001
33 image: mariadb:10.1.38
34 pullPolicy: Always
35 ubuntuInitImage: oomk8s/ubuntu-init:2.0.0
36
37 # application configuration
38 config:
39   # gerrit branch where the latest heat code is checked in
40   gerritBranch: master
41   # gerrit project where the latest heat code is checked in
42   gerritProject: http://gerrit.onap.org/r/so/docker-config.git
43 # default number of instances
44 nodeSelector: {}
45 affinity: {}
46
47 ingress:
48   enabled: false
49
50 # Resource Limit flavor
51 flavor: small
52
53 resources:
54   small:
55     limits:
56       cpu: 2
57       memory: 4Gi
58     requests:
59       cpu: 1
60       memory: 2Gi
61   large:
62     limits:
63       cpu: 4
64       memory: 8Gi
65     requests:
66       cpu: 2
67       memory: 4Gi
68   unlimited: {}
69
70 persistence:
71   enabled: true
72   ## A manually managed Persistent Volume and Claim
73   ## Requires persistence.enabled: true
74   ## If defined, PVC must be created manually before volume will be bound
75   # existingClaim:
76   volumeReclaimPolicy: Retain
77   ## database data Persistent Volume Storage Class
78   ## If defined, storageClassName: <storageClass>
79   ## If set to "-", storageClassName: "", which disables dynamic provisioning
80   ## If undefined (the default) or set to null, no storageClassName spec is
81   ##   set, choosing the default provisioner.  (gp2 on AWS, standard on
82   ##   GKE, AWS & OpenStack)
83   ##
84   # storageClass: "-"
85   accessMode: ReadWriteMany
86   size: 2Gi
87
88   mountPath: /dockerdata-nfs
89   mountSubPath: so/migration