Kiran Kamineni | c0be782 | 2018-08-13 15:37:40 -0700 | [diff] [blame] | 1 | # Copyright 2018 Intel Corporation, Inc |
Sylvain Desbureaux | 0de302a | 2020-06-05 15:19:22 +0200 | [diff] [blame] | 2 | # Modifications © 2020 Orange |
Kiran Kamineni | c0be782 | 2018-08-13 15:37:40 -0700 | [diff] [blame] | 3 | # |
| 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 | ################################################################# |
| 19 | global: |
Sylvain Desbureaux | 0de302a | 2020-06-05 15:19:22 +0200 | [diff] [blame] | 20 | nodePortPrefix: 302 |
Sylvain Desbureaux | 0de302a | 2020-06-05 15:19:22 +0200 | [diff] [blame] | 21 | # Standard OOM |
| 22 | pullPolicy: "Always" |
Sylvain Desbureaux | 0de302a | 2020-06-05 15:19:22 +0200 | [diff] [blame] | 23 | |
Kiran Kamineni | c0be782 | 2018-08-13 15:37:40 -0700 | [diff] [blame] | 24 | 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 Kamineni | c0be782 | 2018-08-13 15:37:40 -0700 | [diff] [blame] | 30 | persistence: {} |
| 31 | |
Sylvain Desbureaux | 0dfa387 | 2020-11-21 21:29:17 +0100 | [diff] [blame^] | 32 | aaf-sshsm-abrmd: |
| 33 | enabled: true |
| 34 | aaf-sshsm-distcenter: |
| 35 | enabled: true |
| 36 | aaf-sshsm-testca: |
| 37 | enabled: true |
| 38 | |
Kiran Kamineni | c0be782 | 2018-08-13 15:37:40 -0700 | [diff] [blame] | 39 | persistence: |
| 40 | enabled: true |
Sylvain Desbureaux | 8f9ef35 | 2020-04-14 15:02:57 +0200 | [diff] [blame] | 41 | 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 Kamineni | c0be782 | 2018-08-13 15:37:40 -0700 | [diff] [blame] | 55 | |
| 56 | # Configure resource requests and limits |
| 57 | resources: |
| 58 | small: |
| 59 | limits: |
Sylvain Desbureaux | c10829f | 2019-11-29 14:43:58 +0100 | [diff] [blame] | 60 | cpu: 20m |
| 61 | memory: 50Mi |
Kiran Kamineni | c0be782 | 2018-08-13 15:37:40 -0700 | [diff] [blame] | 62 | 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) | 53c66dd | 2019-05-03 08:19:35 -0500 | [diff] [blame] | 72 | unlimited: {} |