[DCAEMOD] Uses new tpls for repos / images
[oom.git] / kubernetes / aaf / components / aaf-sms / charts / aaf-sms-quorumclient / values.yaml
1 # Copyright 2018 Intel Corporation, Inc
2 # Modifications © 2020 AT&T
3 #
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
7 #
8 #       http://www.apache.org/licenses/LICENSE-2.0
9 #
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.
15
16 #################################################################
17 # Global configuration defaults.
18 #################################################################
19 global:
20   persistence: {}
21
22 #################################################################
23 # Application configuration defaults.
24 #################################################################
25 # application image
26 repository: nexus3.onap.org:10001
27 image: onap/aaf/smsquorumclient:4.0.2
28 pullPolicy: Always
29
30 # flag to enable debugging - application support required
31 debugEnabled: false
32
33 # application configuration
34 # Example:
35 # default number of instances
36 replicaCount: 3
37
38 nodeSelector: {}
39
40 affinity: {}
41
42 persistence:
43   enabled: true
44   volumeReclaimPolicy: Retain
45   accessMode: ReadWriteOnce
46   size: 10Mi
47   mountPath: /dockerdata-nfs
48   mountSubPath: sms/quorum/data
49
50 ingress:
51   enabled: false
52
53 flavor: small
54
55 # Configure resource requests and limits
56 resources:
57   small:
58     limits:
59       cpu: 40m
60       memory: 40Mi
61     requests:
62       cpu: 1m
63       memory: 10Mi
64   large:
65     limits:
66       cpu: 400m
67       memory: 700Mi
68     requests:
69       cpu: 10m
70       memory: 100Mi
71   unlimited: {}