Merge "[DMAAP] DMaaP ServiceMesh compatibility"
[oom.git] / kubernetes / aaf / components / aaf-sshsm / components / aaf-sshsm-abrmd / 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   tpm:
20     enabled: true
21     # if enabled, nodeselector will use the below
22     # values in the nodeselector section of the pod
23     nodeLabel: "tpm-node"
24     nodeLabelValue: "true"
25
26 #################################################################
27 # Application configuration defaults.
28 #################################################################
29 # application image
30 image: onap/aaf/abrmd:4.0.0
31 pullPolicy: Always
32
33 # flag to enable debugging - application support required
34 debugEnabled: false
35
36 # application configuration
37 # Example:
38 # default number of instances
39 replicaCount: 1
40
41 # TPM specific node selection is done at parent chart aaf-sshsm
42 nodeSelector: {}
43
44 affinity: {}
45
46 ingress:
47   enabled: false
48
49 # Configure resource requests and limits
50 flavor: small
51 resources:
52   small:
53     limits:
54       cpu: 20m
55       memory: 50Mi
56     requests:
57       cpu: 10m
58       memory: 10Mi
59   large:
60     limits:
61       cpu: 400m
62       memory: 1Gi
63     requests:
64       cpu: 10m
65       memory: 100Mi
66   unlimited: {}