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: |
| 19 | nodePortPrefix: 302 |
| 20 | readinessRepository: oomk8s |
| 21 | readinessImage: readiness-check:2.0.0 |
| 22 | loggingRepository: docker.elastic.co |
| 23 | loggingImage: beats/filebeat:5.5.0 |
| 24 | ubuntuInitRepository: oomk8s |
| 25 | ubuntuInitImage: ubuntu-init:1.0.0 |
| 26 | tpm: |
| 27 | enabled: false |
| 28 | # if enabled, nodeselector will use the below |
| 29 | # values in the nodeselector section of the pod |
| 30 | nodeLabel: "tpm-node" |
| 31 | nodeLabelValue: "true" |
| 32 | abrmd: |
| 33 | enabled: true |
| 34 | distcenter: |
| 35 | enabled: true |
| 36 | testca: |
| 37 | enabled: true |
| 38 | persistence: {} |
| 39 | |
| 40 | persistence: |
| 41 | enabled: true |
| 42 | volumeReclaimPolicy: Retain |
| 43 | accessMode: ReadWriteOnce |
| 44 | size: 10Mi |
| 45 | mountPath: /dockerdata-nfs |
| 46 | dataMountSubPath: sshsm/data |
| 47 | dbusMountSubPath: sshsm/dbus |
| 48 | |
| 49 | # Configure resource requests and limits |
| 50 | resources: |
| 51 | small: |
| 52 | limits: |
| 53 | cpu: 200m |
| 54 | memory: 500Mi |
| 55 | requests: |
| 56 | cpu: 10m |
| 57 | memory: 10Mi |
| 58 | large: |
| 59 | limits: |
| 60 | cpu: 400m |
| 61 | memory: 1Gi |
| 62 | requests: |
| 63 | cpu: 10m |
| 64 | memory: 100Mi |
Gathman, Jonathan (jg1555) | 53c66dd | 2019-05-03 08:19:35 -0500 | [diff] [blame^] | 65 | unlimited: {} |