From be779fa2d7f44b511bde929582b6340c650d24cc Mon Sep 17 00:00:00 2001 From: gfraboni Date: Tue, 19 Sep 2017 13:25:30 -0400 Subject: Add Consul support to 'OneClick' deployment. The OOM is moving to using Consul to provide health checks for all ONAP components. This push adds deployment of a 3 node Consul Server cluster and a single Consul agent to the 'OneClick' deployment. As a first step, health check scripts for the A&AI microservices have also been included. Support for additional ONAP components will follow. Issue-ID: OOM-86 Change-Id: Ib63f3d8b1b745551c9ec55b6529d022b32006e9c Signed-off-by: gfraboni --- .../consul/templates/consul-server-service.yaml | 22 ++++++++++++++++++++++ 1 file changed, 22 insertions(+) create mode 100644 kubernetes/consul/templates/consul-server-service.yaml (limited to 'kubernetes/consul/templates/consul-server-service.yaml') diff --git a/kubernetes/consul/templates/consul-server-service.yaml b/kubernetes/consul/templates/consul-server-service.yaml new file mode 100644 index 0000000000..465456425e --- /dev/null +++ b/kubernetes/consul/templates/consul-server-service.yaml @@ -0,0 +1,22 @@ +apiVersion: v1 +kind: Service +metadata: + labels: + app: consul-server + name: consul-server + namespace: "{{ .Values.nsPrefix }}-consul" +spec: + ports: + - name: consul-ui + nodePort: {{ .Values.nodePortPrefix }}70 + port: 8500 + protocol: TCP + targetPort: 8500 + - name: consul-join + nodePort: {{ .Values.nodePortPrefix }}71 + port: 8301 + protocol: TCP + targetPort: 8301 + selector: + app: consul-server + type: {{ .Values.service.type | quote }} -- cgit 1.2.3-korg