blob: 7e8d4f1352151a7589d0f96240567d01915144e2 [file] [log] [blame]
Kiran Kaminenic0be7822018-08-13 15:37:40 -07001# Copyright 2018 Intel Corporation, Inc
Sylvain Desbureaux0de302a2020-06-05 15:19:22 +02002# Modifications © 2020 Orange
Kiran Kaminenic0be7822018-08-13 15:37:40 -07003#
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#################################################################
19global:
Sylvain Desbureaux0de302a2020-06-05 15:19:22 +020020 nodePortPrefix: 302
Sylvain Desbureaux0de302a2020-06-05 15:19:22 +020021 # Standard OOM
22 pullPolicy: "Always"
Sylvain Desbureaux0de302a2020-06-05 15:19:22 +020023
Kiran Kaminenic0be7822018-08-13 15:37:40 -070024 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"
Kiran Kaminenic0be7822018-08-13 15:37:40 -070030 persistence: {}
31
Sylvain Desbureaux0dfa3872020-11-21 21:29:17 +010032aaf-sshsm-abrmd:
33 enabled: true
34aaf-sshsm-distcenter:
35 enabled: true
36aaf-sshsm-testca:
37 enabled: true
38
Kiran Kaminenic0be7822018-08-13 15:37:40 -070039persistence:
40 enabled: true
Sylvain Desbureaux8f9ef352020-04-14 15:02:57 +020041 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
Kiran Kaminenic0be7822018-08-13 15:37:40 -070055
56# Configure resource requests and limits
57resources:
58 small:
59 limits:
Sylvain Desbureauxc10829f2019-11-29 14:43:58 +010060 cpu: 20m
61 memory: 50Mi
Kiran Kaminenic0be7822018-08-13 15:37:40 -070062 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
Gathman, Jonathan (jg1555)53c66dd2019-05-03 08:19:35 -050072 unlimited: {}