fe4cbaee9c6b8864f5b6494adec2b79ba1bd56e4
[oom.git] / kubernetes / common / music / values.yaml
1 # Copyright © 2018-2020  AT&T, Amdocs, Bell Canada Intellectual Property.  All rights reserved.
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   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
28 debugEnabled: false
29
30 # default number of instances
31 replicaCount: 3
32
33 nodeSelector: {}
34
35 affinity: {}
36
37 # probe configuration parameters
38 liveness:
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
45 readiness:
46   initialDelaySeconds: 10
47   periodSeconds: 10
48
49 resources: {}
50