blob: 2eb3c257173ee959790448ff43121149d6a59242 [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
jasmineWen09bc80d2018-03-21 18:21:17 +000020 readinessRepository: oomk8s
BorislavG3d6f9372018-04-15 11:55:39 +000021 readinessImage: readiness-check:2.0.0
jasmineWen09bc80d2018-03-21 18:21:17 +000022 loggingRepository: docker.elastic.co
23 loggingImage: beats/filebeat:5.5.0
24
25#################################################################
26# Application configuration defaults.
27#################################################################
28# application image
29repository: docker.io
30image: consul:1.0.6
31pullPolicy: Always
32
33# flag to enable debugging - application support required
34debugEnabled: false
35
Priyanka Jain1fda9682018-05-09 08:42:50 +000036replicaCount: 3
jasmineWen09bc80d2018-03-21 18:21:17 +000037
38nodeSelector: {}
39
40affinity: {}
41
42# probe configuration parameters
43liveness:
Priyanka Jain1fda9682018-05-09 08:42:50 +000044 initialDelaySeconds: 10
45 periodSeconds: 5
jasmineWen09bc80d2018-03-21 18:21:17 +000046 # necessary to disable liveness probe when setting breakpoints
47 # in debugger so K8s doesn't restart unresponsive container
48 enabled: true
49
50readiness:
Priyanka Jain1fda9682018-05-09 08:42:50 +000051 initialDelaySeconds: 10
52 periodSeconds: 5
jasmineWen09bc80d2018-03-21 18:21:17 +000053
54service:
Priyanka Jain1fda9682018-05-09 08:42:50 +000055 type: ClusterIP
BorislavG1ffbd992018-04-24 07:56:27 +000056 name: consul-server
Priyanka Jain1fda9682018-05-09 08:42:50 +000057 portName: consul-join
58 internalPort: 8301
59 type2: NodePort
60 portName2: consul-ui
61 internalPort2: 8500
62 nodePort2: 70
jasmineWen09bc80d2018-03-21 18:21:17 +000063
64ingress:
65 enabled: false
66
67resources: {}