blob: 081ba2a2404626bfad2f8456bb7403f1e0bf014e [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 repositorySecret: eyJuZXh1czMub25hcC5vcmc6MTAwMDEiOnsidXNlcm5hbWUiOiJkb2NrZXIiLCJwYXNzd29yZCI6ImRvY2tlciIsImVtYWlsIjoiQCIsImF1dGgiOiJaRzlqYTJWeU9tUnZZMnRsY2c9PSJ9fQ==
20 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
Mike Elliott0440a322018-04-25 14:24:51 -040036replicaCount: 1
jasmineWen09bc80d2018-03-21 18:21:17 +000037
38nodeSelector: {}
39
40affinity: {}
41
42# probe configuration parameters
43liveness:
Mike Elliott0440a322018-04-25 14:24:51 -040044 initialDelaySeconds: 90
jasmineWen09bc80d2018-03-21 18:21:17 +000045 periodSeconds: 10
46 # necessary to disable liveness probe when setting breakpoints
47 # in debugger so K8s doesn't restart unresponsive container
48 enabled: true
49
50readiness:
Mike Elliott0440a322018-04-25 14:24:51 -040051 initialDelaySeconds: 90
jasmineWen09bc80d2018-03-21 18:21:17 +000052 periodSeconds: 10
53
54service:
55 type: NodePort
BorislavG1ffbd992018-04-24 07:56:27 +000056 name: consul-server
57 portName: consul-ui
jasmineWen09bc80d2018-03-21 18:21:17 +000058 nodePort: 70
59 internalPort: 8500
BorislavG1ffbd992018-04-24 07:56:27 +000060 portName2: consul-join
jasmineWen09bc80d2018-03-21 18:21:17 +000061 nodePort2: 71
62 internalPort2: 8301
63
64ingress:
65 enabled: false
66
67resources: {}