blob: 30fb0d2f2f23bd961a2e5becc18619dde63b80ed [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
22 readinessRepository: oomk8s
23 readinessImage: readiness-check:2.0.2
24 # Ubuntu Init image
25 ubuntuInitRepository: registry.hub.docker.com
26 ubuntuInitImage: oomk8s/ubuntu-init:2.0.0
27 # Logging image
28 loggingRepository: docker.elastic.co
29 loggingImage: beats/filebeat:5.5.0
30 # BusyBox image
31 busyboxRepository: registry.hub.docker.com
32 busyboxImage: library/busybox:1.31
33 # Standard OOM
34 pullPolicy: "Always"
35 repository: "nexus3.onap.org:10001"
36
Kiran Kaminenic0be7822018-08-13 15:37:40 -070037 tpm:
38 enabled: false
39 # if enabled, nodeselector will use the below
40 # values in the nodeselector section of the pod
41 nodeLabel: "tpm-node"
42 nodeLabelValue: "true"
43 abrmd:
44 enabled: true
45 distcenter:
46 enabled: true
47 testca:
48 enabled: true
49 persistence: {}
50
51persistence:
52 enabled: true
Sylvain Desbureaux8f9ef352020-04-14 15:02:57 +020053 data:
54 enabled: true
55 size: 10Mi
56 volumeReclaimPolicy: Retain
57 accessMode: ReadWriteOnce
58 mountSubPath: sshsm/data
59 dbus:
60 enabled: true
61 size: 10Mi
62 volumeReclaimPolicy: Retain
63 accessMode: ReadWriteOnce
64 mountSubPath: sshsm/dbus
65
66
Kiran Kaminenic0be7822018-08-13 15:37:40 -070067
68# Configure resource requests and limits
69resources:
70 small:
71 limits:
Sylvain Desbureauxc10829f2019-11-29 14:43:58 +010072 cpu: 20m
73 memory: 50Mi
Kiran Kaminenic0be7822018-08-13 15:37:40 -070074 requests:
75 cpu: 10m
76 memory: 10Mi
77 large:
78 limits:
79 cpu: 400m
80 memory: 1Gi
81 requests:
82 cpu: 10m
83 memory: 100Mi
Gathman, Jonathan (jg1555)53c66dd2019-05-03 08:19:35 -050084 unlimited: {}