blob: 55d38a094ca935e8db6875c89ef35caffab5f70a [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
35 volumeReclaimPolicy: Retain
36 accessMode: ReadWriteOnce
37 size: 10Mi
38 mountPath: /dockerdata-nfs
39 dataMountSubPath: sshsm/data
40 dbusMountSubPath: sshsm/dbus
41
42# Configure resource requests and limits
43resources:
44 small:
45 limits:
Sylvain Desbureauxc10829f2019-11-29 14:43:58 +010046 cpu: 20m
47 memory: 50Mi
Kiran Kaminenic0be7822018-08-13 15:37:40 -070048 requests:
49 cpu: 10m
50 memory: 10Mi
51 large:
52 limits:
53 cpu: 400m
54 memory: 1Gi
55 requests:
56 cpu: 10m
57 memory: 100Mi
Gathman, Jonathan (jg1555)53c66dd2019-05-03 08:19:35 -050058 unlimited: {}