Merge "[DMAAP] DMaaP ServiceMesh compatibility"
[oom.git] / kubernetes / aaf / components / aaf-sshsm / components / aaf-sshsm-testca / 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
19 global:
20   tpm:
21     enabled: true
22     # if enabled, nodeselector will use the below
23     # values in the nodeselector section of the pod
24     nodeLabel: "tpm-node"
25     nodeLabelValue: "true"
26
27 #################################################################
28 # Application configuration defaults.
29 #################################################################
30 # application image
31 image: onap/aaf/testcaservice:4.0.0
32 pullPolicy: Always
33
34 # flag to enable debugging - application support required
35 debugEnabled: false
36
37 # application configuration
38 # Example:
39 # default number of instances
40 replicaCount: 1
41
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: 50m
55       memory: 100Mi
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: {}