diff options
author | Mandeep Khinda <Mandeep.Khinda@amdocs.com> | 2018-03-07 20:38:56 +0000 |
---|---|---|
committer | Gerrit Code Review <gerrit@onap.org> | 2018-03-07 20:38:56 +0000 |
commit | 9752007b556bd2fe9f75436667533652b5cf07e9 (patch) | |
tree | 816c11d1decfa081d6df0f34ebb9c2eb109a4f1d /kubernetes/consul | |
parent | 23d155ec787e0260503a4f9eb9d379711f6239e6 (diff) | |
parent | b7d08b201b0f702936724473e90b14fed04ab21b (diff) |
Merge "Replica Scaling of Consul and Log container"
Diffstat (limited to 'kubernetes/consul')
-rw-r--r-- | kubernetes/consul/templates/consul-agent-deployment.yaml | 1 | ||||
-rw-r--r-- | kubernetes/consul/templates/consul-server-deployment.yaml | 2 | ||||
-rw-r--r-- | kubernetes/consul/values.yaml | 2 |
3 files changed, 4 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 diff --git a/kubernetes/consul/values.yaml b/kubernetes/consul/values.yaml index 89f3ecd0a7..a6909d7d21 100644 --- a/kubernetes/consul/values.yaml +++ b/kubernetes/consul/values.yaml @@ -3,5 +3,7 @@ nodePortPrefix: 302 consuldockerTag: "latest" rootHostPath: "/dockerdata-nfs" consulimageRegistry: "docker.io/consul" +consulAgentReplicas: 1 +consulServerReplicas: 3 service: type: NodePort |