blob: 5600213e11e1fe47ffd21ecdb290b7537e2a88dc [file] [log] [blame]
Kiran Kaminenic0be7822018-08-13 15:37:40 -07001# 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#################################################################
18global:
Kiran Kaminenic0be7822018-08-13 15:37:40 -070019 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
33persistence:
34 enabled: true
Sylvain Desbureaux8f9ef352020-04-14 15:02:57 +020035 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
Kiran Kaminenic0be7822018-08-13 15:37:40 -070049
50# Configure resource requests and limits
51resources:
52 small:
53 limits:
Sylvain Desbureauxc10829f2019-11-29 14:43:58 +010054 cpu: 20m
55 memory: 50Mi
Kiran Kaminenic0be7822018-08-13 15:37:40 -070056 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
Gathman, Jonathan (jg1555)53c66dd2019-05-03 08:19:35 -050066 unlimited: {}