blob: fe4cbaee9c6b8864f5b6494adec2b79ba1bd56e4 [file] [log] [blame]
Tschaen, Brendan08d7b632020-04-02 19:49:13 +00001# Copyright © 2018-2020 AT&T, Amdocs, Bell Canada Intellectual Property. All rights reserved.
Nelson,Thomas(tn1381)(arthurdent3)4807fdf2018-09-19 16:52:36 -04002#
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#################################################################
18global:
19 nodePortPrefix: 302
20 repository: nexus3.onap.org:10001
21
22 readinessRepository: oomk8s
23 readinessImage: readiness-check:2.0.0
24 loggingRepository: docker.elastic.co
25 loggingImage: beats/filebeat:5.5.0
26
27# flag to enable debugging - application support required
28debugEnabled: false
29
30# default number of instances
31replicaCount: 3
32
33nodeSelector: {}
34
35affinity: {}
36
37# probe configuration parameters
38liveness:
39 initialDelaySeconds: 10
40 periodSeconds: 10
41 # necessary to disable liveness probe when setting breakpoints
42 # in debugger so K8s doesn't restart unresponsive container
43 enabled: true
44
45readiness:
46 initialDelaySeconds: 10
47 periodSeconds: 10
48
49resources: {}
50