Kiran Kamineni | c0be782 | 2018-08-13 15:37:40 -0700 | [diff] [blame] | 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: |
Kiran Kamineni | c0be782 | 2018-08-13 15:37:40 -0700 | [diff] [blame] | 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 |
Sylvain Desbureaux | 8f9ef35 | 2020-04-14 15:02:57 +0200 | [diff] [blame] | 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 | |
Kiran Kamineni | c0be782 | 2018-08-13 15:37:40 -0700 | [diff] [blame] | 49 | |
| 50 | # Configure resource requests and limits |
| 51 | resources: |
| 52 | small: |
| 53 | limits: |
Sylvain Desbureaux | c10829f | 2019-11-29 14:43:58 +0100 | [diff] [blame] | 54 | cpu: 20m |
| 55 | memory: 50Mi |
Kiran Kamineni | c0be782 | 2018-08-13 15:37:40 -0700 | [diff] [blame] | 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 |
Gathman, Jonathan (jg1555) | 53c66dd | 2019-05-03 08:19:35 -0500 | [diff] [blame] | 66 | unlimited: {} |