Merge "[DMAAP] DMaaP ServiceMesh compatibility"
[oom.git] / kubernetes / aaf / components / aaf-sshsm / values.yaml
1 # Copyright 2018 Intel Corporation, Inc
2 # Modifications © 2020 Orange
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   nodePortPrefix: 302
21   # Standard OOM
22   pullPolicy: "Always"
23
24   tpm:
25     enabled: false
26     # if enabled, nodeselector will use the below
27     # values in the nodeselector section of the pod
28     nodeLabel: "tpm-node"
29     nodeLabelValue: "true"
30   persistence: {}
31
32 aaf-sshsm-abrmd:
33   enabled: true
34 aaf-sshsm-distcenter:
35   enabled: true
36 aaf-sshsm-testca:
37   enabled: true
38
39 persistence:
40   enabled: true
41   data:
42     enabled: true
43     size: 10Mi
44     volumeReclaimPolicy: Retain
45     accessMode: ReadWriteOnce
46     mountSubPath: sshsm/data
47   dbus:
48     enabled: true
49     size: 10Mi
50     volumeReclaimPolicy: Retain
51     accessMode: ReadWriteOnce
52     mountSubPath: sshsm/dbus
53
54
55
56 # Configure resource requests and limits
57 resources:
58   small:
59     limits:
60       cpu: 20m
61       memory: 50Mi
62     requests:
63       cpu: 10m
64       memory: 10Mi
65   large:
66     limits:
67       cpu: 400m
68       memory: 1Gi
69     requests:
70       cpu: 10m
71       memory: 100Mi
72   unlimited: {}