DMaaP Data Router integration into OOM
[oom.git] / kubernetes / dmaap / charts / dmaap-data-router / charts / dmaap-dr-db / 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
15 # Default values for mariadb.
16 # This is a YAML-formatted file.
17 # Declare variables to be passed into your templates.
18 global: # global defaults
19   persistence: {}
20
21 # application image
22 repository: nexus3.onap.org:10001
23 image: mariadb:10.2.14
24 pullPolicy: Always
25
26 # application configuration - see parent values chart
27
28 # flag to enable debugging - application support required
29 debugEnabled: false
30
31 # default number of instances
32 replicaCount: 1
33
34 nodeSelector: {}
35
36 affinity: {}
37
38 # probe configuration parameters
39 liveness:
40   initialDelaySeconds: 30
41   periodSeconds: 10
42   # necessary to disable liveness probe when setting breakpoints
43   # in debugger so K8s doesn't restart unresponsive container
44   enabled: true
45
46 readiness:
47   initialDelaySeconds: 30
48   periodSeconds: 10
49
50 ## Persist data to a persitent volume
51 persistence:
52   enabled: true
53   volumeReclaimPolicy: Retain
54   accessMode: ReadWriteMany
55   size: 1Gi
56   mountPath: /dockerdata-nfs
57   mountSubPath: dmaap/dr-db/data
58
59 ingress:
60   enabled: false
61
62 resources: {}
63   # We usually recommend not to specify default resources and to leave this as a conscious
64   # choice for the user. This also increases chances charts run on environments with little
65   # resources, such as Minikube. If you do want to specify resources, uncomment the following
66   # lines, adjust them as necessary, and remove the curly braces after 'resources:'.
67   #
68   # Example:
69   # Configure resource requests and limits
70   # ref: http://kubernetes.io/docs/user-guide/compute-resources/
71   # Minimum memory for development is 2 CPU cores and 4GB memory 
72   # Minimum memory for production is 4 CPU cores and 8GB memory 
73 #resources:
74 #  limits:
75 #    cpu: 2
76 #    memory: 4Gi
77 #  requests:
78 #    cpu: 2
79 #    memory: 4Gi