[SO] bump the SO modules
[oom.git] / kubernetes / aaf / charts / aaf-sshsm / 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: false
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   abrmd:
26     enabled: true
27   distcenter:
28     enabled: true
29   testca:
30     enabled: true
31   persistence: {}
32
33 persistence:
34   enabled: true
35   data:
36     enabled: true
37     size: 10Mi
38     volumeReclaimPolicy: Retain
39     accessMode: ReadWriteOnce
40     mountSubPath: sshsm/data
41   dbus:
42     enabled: true
43     size: 10Mi
44     volumeReclaimPolicy: Retain
45     accessMode: ReadWriteOnce
46     mountSubPath: sshsm/dbus
47
48
49
50 # Configure resource requests and limits
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: {}