Merge "[UUI] Service Mesh Compliance for UUI"
[oom.git] / kubernetes / aaf / components / aaf-sshsm / components / aaf-sshsm-distcenter / values.yaml
1 # Copyright 2018 Intel Corporation, Inc
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 #################################################################
16 # Global configuration defaults.
17 #################################################################
18 global:
19   persistence: {}
20   tpm:
21     enabled: true
22
23 #################################################################
24 # Application configuration defaults.
25 #################################################################
26 # application image
27 image: onap/aaf/distcenter:4.0.0
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: 1
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: sshsm/distcenter/data
49
50 ingress:
51   enabled: false
52
53 # Configure resource requests and limits
54 flavor: small
55 resources:
56   small:
57     limits:
58       cpu: 20m
59       memory: 50Mi
60     requests:
61       cpu: 10m
62       memory: 10Mi
63   large:
64     limits:
65       cpu: 400m
66       memory: 1Gi
67     requests:
68       cpu: 10m
69       memory: 100Mi
70   unlimited: {}