blob: f4f3b16dadc3ee257df4016b38dec3f5c9671ee8 [file] [log] [blame]
jasmineWen09bc80d2018-03-21 18:21:17 +00001# Copyright © 2017 Amdocs, Bell Canada
Mukul2b4e7532018-08-03 10:41:29 +00002# Modifications Copyright © 2018 AT&T
jasmineWen09bc80d2018-03-21 18:21:17 +00003#
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# Global configuration defaults.
17#################################################################
18global:
19 nodePortPrefix: 302
Sylvain Desbureaux1694e1d2020-08-21 09:58:25 +020020 readinessImage: onap/oom/readiness:3.0.1
jasmineWen09bc80d2018-03-21 18:21:17 +000021 loggingRepository: docker.elastic.co
22 loggingImage: beats/filebeat:5.5.0
23
24#################################################################
25# Application configuration defaults.
26#################################################################
27# application image
28repository: docker.io
29image: consul:1.0.6
30pullPolicy: Always
31
32# flag to enable debugging - application support required
33debugEnabled: false
34
Priyanka Jain1fda9682018-05-09 08:42:50 +000035replicaCount: 3
jasmineWen09bc80d2018-03-21 18:21:17 +000036
37nodeSelector: {}
38
39affinity: {}
40
41# probe configuration parameters
42liveness:
Priyanka Jain1fda9682018-05-09 08:42:50 +000043 initialDelaySeconds: 10
44 periodSeconds: 5
jasmineWen09bc80d2018-03-21 18:21:17 +000045 # necessary to disable liveness probe when setting breakpoints
46 # in debugger so K8s doesn't restart unresponsive container
47 enabled: true
48
49readiness:
Priyanka Jain1fda9682018-05-09 08:42:50 +000050 initialDelaySeconds: 10
51 periodSeconds: 5
jasmineWen09bc80d2018-03-21 18:21:17 +000052
53service:
Priyanka Jain1fda9682018-05-09 08:42:50 +000054 type: ClusterIP
BorislavG1ffbd992018-04-24 07:56:27 +000055 name: consul-server
Priyanka Jain1fda9682018-05-09 08:42:50 +000056 portName: consul-join
57 internalPort: 8301
Sylvain Desbureaux4b5a4882020-03-02 13:42:31 +010058 type2: ClusterIP
Priyanka Jain1fda9682018-05-09 08:42:50 +000059 portName2: consul-ui
60 internalPort2: 8500
61 nodePort2: 70
jasmineWen09bc80d2018-03-21 18:21:17 +000062
63ingress:
64 enabled: false
65
66resources: {}