Merge "[DMAAP] DMaaP ServiceMesh compatibility"
[oom.git] / kubernetes / aaf / components / aaf-sms / components / 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 image: onap/aaf/smsquorumclient:4.0.2
27 pullPolicy: Always
28
29 # flag to enable debugging - application support required
30 debugEnabled: false
31
32 # application configuration
33 # Example:
34 # default number of instances
35 replicaCount: 3
36
37 nodeSelector: {}
38
39 affinity: {}
40
41 service:
42   name: aaf-sms
43
44 persistence:
45   enabled: true
46   volumeReclaimPolicy: Retain
47   accessMode: ReadWriteOnce
48   size: 10Mi
49   mountPath: /dockerdata-nfs
50   mountSubPath: sms/quorum/data
51
52 ingress:
53   enabled: false
54
55 flavor: small
56
57 # Configure resource requests and limits
58 resources:
59   small:
60     limits:
61       cpu: 40m
62       memory: 40Mi
63     requests:
64       cpu: 1m
65       memory: 10Mi
66   large:
67     limits:
68       cpu: 400m
69       memory: 700Mi
70     requests:
71       cpu: 10m
72       memory: 100Mi
73   unlimited: {}