blob: b214bd58b0e12901e24a24de0d2cc472d7c7cc0b [file] [log] [blame]
jasmineWen09bc80d2018-03-21 18:21:17 +00001# Copyright © 2017 Amdocs, Bell Canada
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# Global configuration defaults.
16#################################################################
17global:
18 nodePortPrefix: 302
jasmineWen09bc80d2018-03-21 18:21:17 +000019 readinessRepository: oomk8s
BorislavG3d6f9372018-04-15 11:55:39 +000020 readinessImage: readiness-check:2.0.0
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
Mike Elliott0440a322018-04-25 14:24:51 -040035replicaCount: 1
jasmineWen09bc80d2018-03-21 18:21:17 +000036
37nodeSelector: {}
38
39affinity: {}
40
41# probe configuration parameters
42liveness:
Mike Elliott0440a322018-04-25 14:24:51 -040043 initialDelaySeconds: 90
jasmineWen09bc80d2018-03-21 18:21:17 +000044 periodSeconds: 10
45 # necessary to disable liveness probe when setting breakpoints
46 # in debugger so K8s doesn't restart unresponsive container
47 enabled: true
48
49readiness:
Mike Elliott0440a322018-04-25 14:24:51 -040050 initialDelaySeconds: 90
jasmineWen09bc80d2018-03-21 18:21:17 +000051 periodSeconds: 10
52
53service:
54 type: NodePort
BorislavG1ffbd992018-04-24 07:56:27 +000055 name: consul-server
56 portName: consul-ui
jasmineWen09bc80d2018-03-21 18:21:17 +000057 nodePort: 70
58 internalPort: 8500
BorislavG1ffbd992018-04-24 07:56:27 +000059 portName2: consul-join
jasmineWen09bc80d2018-03-21 18:21:17 +000060 nodePort2: 71
61 internalPort2: 8301
62
63ingress:
64 enabled: false
65
66resources: {}