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 |
| 21 | # Readiness image |
Sylvain Desbureaux | 1694e1d | 2020-08-21 09:58:25 +0200 | [diff] [blame] | 22 | readinessImage: onap/oom/readiness:3.0.1 |
Sylvain Desbureaux | 0de302a | 2020-06-05 15:19:22 +0200 | [diff] [blame] | 23 | # Ubuntu Init image |
Sylvain Desbureaux | 23a38b3 | 2020-11-20 08:57:12 +0100 | [diff] [blame] | 24 | ubuntuInitRepository: docker.io |
Sylvain Desbureaux | 0de302a | 2020-06-05 15:19:22 +0200 | [diff] [blame] | 25 | ubuntuInitImage: oomk8s/ubuntu-init:2.0.0 |
| 26 | # Logging image |
| 27 | loggingRepository: docker.elastic.co |
| 28 | loggingImage: beats/filebeat:5.5.0 |
| 29 | # BusyBox image |
Sylvain Desbureaux | 23a38b3 | 2020-11-20 08:57:12 +0100 | [diff] [blame] | 30 | busyboxRepository: docker.io |
Sylvain Desbureaux | 0de302a | 2020-06-05 15:19:22 +0200 | [diff] [blame] | 31 | busyboxImage: library/busybox:1.31 |
| 32 | # Standard OOM |
| 33 | pullPolicy: "Always" |
| 34 | repository: "nexus3.onap.org:10001" |
| 35 | |
Kiran Kamineni | c0be782 | 2018-08-13 15:37:40 -0700 | [diff] [blame] | 36 | tpm: |
| 37 | enabled: false |
| 38 | # if enabled, nodeselector will use the below |
| 39 | # values in the nodeselector section of the pod |
| 40 | nodeLabel: "tpm-node" |
| 41 | nodeLabelValue: "true" |
| 42 | abrmd: |
| 43 | enabled: true |
| 44 | distcenter: |
| 45 | enabled: true |
| 46 | testca: |
| 47 | enabled: true |
| 48 | persistence: {} |
| 49 | |
| 50 | persistence: |
| 51 | enabled: true |
Sylvain Desbureaux | 8f9ef35 | 2020-04-14 15:02:57 +0200 | [diff] [blame] | 52 | data: |
| 53 | enabled: true |
| 54 | size: 10Mi |
| 55 | volumeReclaimPolicy: Retain |
| 56 | accessMode: ReadWriteOnce |
| 57 | mountSubPath: sshsm/data |
| 58 | dbus: |
| 59 | enabled: true |
| 60 | size: 10Mi |
| 61 | volumeReclaimPolicy: Retain |
| 62 | accessMode: ReadWriteOnce |
| 63 | mountSubPath: sshsm/dbus |
| 64 | |
| 65 | |
Kiran Kamineni | c0be782 | 2018-08-13 15:37:40 -0700 | [diff] [blame] | 66 | |
| 67 | # Configure resource requests and limits |
| 68 | resources: |
| 69 | small: |
| 70 | limits: |
Sylvain Desbureaux | c10829f | 2019-11-29 14:43:58 +0100 | [diff] [blame] | 71 | cpu: 20m |
| 72 | memory: 50Mi |
Kiran Kamineni | c0be782 | 2018-08-13 15:37:40 -0700 | [diff] [blame] | 73 | requests: |
| 74 | cpu: 10m |
| 75 | memory: 10Mi |
| 76 | large: |
| 77 | limits: |
| 78 | cpu: 400m |
| 79 | memory: 1Gi |
| 80 | requests: |
| 81 | cpu: 10m |
| 82 | memory: 100Mi |
Gathman, Jonathan (jg1555) | 53c66dd | 2019-05-03 08:19:35 -0500 | [diff] [blame] | 83 | unlimited: {} |