diff options
author | Priyanka Jain <Priyanka.Jain3@amdocs.com> | 2018-05-09 08:42:50 +0000 |
---|---|---|
committer | BorislavG <Borislav.Glozman@amdocs.com> | 2018-05-15 12:07:43 +0300 |
commit | 1fda96895b4e2d6debbcf6fe34a638d537e0a592 (patch) | |
tree | a131c2031d0f3de53d2dbe059eca2cdd7737d994 /kubernetes/consul/charts/consul-server/values.yaml | |
parent | d31e2a0a1032acd12cce02a3767988027cd6a5c6 (diff) |
Consul Stateful Set
Issue-ID: OOM-1032
Change-Id: I911085dffc35067d844b5dcb286581fa0897a27a
Signed-off-by: Priyanka Jain <Priyanka.Jain3@amdocs.com>
Diffstat (limited to 'kubernetes/consul/charts/consul-server/values.yaml')
-rw-r--r-- | kubernetes/consul/charts/consul-server/values.yaml | 24 |
1 files changed, 12 insertions, 12 deletions
diff --git a/kubernetes/consul/charts/consul-server/values.yaml b/kubernetes/consul/charts/consul-server/values.yaml index b214bd58b0..671cf07c9d 100644 --- a/kubernetes/consul/charts/consul-server/values.yaml +++ b/kubernetes/consul/charts/consul-server/values.yaml @@ -32,7 +32,7 @@ pullPolicy: Always # flag to enable debugging - application support required debugEnabled: false -replicaCount: 1 +replicaCount: 3 nodeSelector: {} @@ -40,25 +40,25 @@ affinity: {} # probe configuration parameters liveness: - initialDelaySeconds: 90 - periodSeconds: 10 + initialDelaySeconds: 10 + periodSeconds: 5 # necessary to disable liveness probe when setting breakpoints # in debugger so K8s doesn't restart unresponsive container enabled: true readiness: - initialDelaySeconds: 90 - periodSeconds: 10 + initialDelaySeconds: 10 + periodSeconds: 5 service: - type: NodePort + type: ClusterIP name: consul-server - portName: consul-ui - nodePort: 70 - internalPort: 8500 - portName2: consul-join - nodePort2: 71 - internalPort2: 8301 + portName: consul-join + internalPort: 8301 + type2: NodePort + portName2: consul-ui + internalPort2: 8500 + nodePort2: 70 ingress: enabled: false |