blob: eee2bcf0aa72c2250ba06af2b993d41e5abe8ff8 [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
21 # Readiness image
Sylvain Desbureaux1694e1d2020-08-21 09:58:25 +020022 readinessImage: onap/oom/readiness:3.0.1
Sylvain Desbureaux0de302a2020-06-05 15:19:22 +020023 # Ubuntu Init image
Sylvain Desbureaux23a38b32020-11-20 08:57:12 +010024 ubuntuInitRepository: docker.io
Sylvain Desbureaux0de302a2020-06-05 15:19:22 +020025 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 Desbureaux23a38b32020-11-20 08:57:12 +010030 busyboxRepository: docker.io
Sylvain Desbureaux0de302a2020-06-05 15:19:22 +020031 busyboxImage: library/busybox:1.31
32 # Standard OOM
33 pullPolicy: "Always"
34 repository: "nexus3.onap.org:10001"
35
Kiran Kaminenic0be7822018-08-13 15:37:40 -070036 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
50persistence:
51 enabled: true
Sylvain Desbureaux8f9ef352020-04-14 15:02:57 +020052 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 Kaminenic0be7822018-08-13 15:37:40 -070066
67# Configure resource requests and limits
68resources:
69 small:
70 limits:
Sylvain Desbureauxc10829f2019-11-29 14:43:58 +010071 cpu: 20m
72 memory: 50Mi
Kiran Kaminenic0be7822018-08-13 15:37:40 -070073 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)53c66dd2019-05-03 08:19:35 -050083 unlimited: {}