diff options
Diffstat (limited to 'kubernetes/consul/templates')
-rw-r--r-- | kubernetes/consul/templates/consul-agent-deployment.yaml | 1 | ||||
-rw-r--r-- | kubernetes/consul/templates/consul-server-deployment.yaml | 2 |
2 files changed, 2 insertions, 1 deletions
diff --git a/kubernetes/consul/templates/consul-agent-deployment.yaml b/kubernetes/consul/templates/consul-agent-deployment.yaml index 81b16b54ca..a2bbe6636f 100644 --- a/kubernetes/consul/templates/consul-agent-deployment.yaml +++ b/kubernetes/consul/templates/consul-agent-deployment.yaml @@ -7,6 +7,7 @@ metadata: name: consul-agent namespace: "{{ .Values.nsPrefix }}" spec: + replicas: {{ .Values.consulAgentReplicas }} selector: matchLabels: app: consul-agent diff --git a/kubernetes/consul/templates/consul-server-deployment.yaml b/kubernetes/consul/templates/consul-server-deployment.yaml index c9f2cfb372..6aafee4cb2 100644 --- a/kubernetes/consul/templates/consul-server-deployment.yaml +++ b/kubernetes/consul/templates/consul-server-deployment.yaml @@ -7,7 +7,7 @@ metadata: name: consul-server namespace: "{{ .Values.nsPrefix }}" spec: - replicas: 3 + replicas: {{ .Values.consulServerReplicas }} selector: matchLabels: app: consul-server |