aboutsummaryrefslogtreecommitdiffstats
path: root/kubernetes/consul/templates/consul-server-service.yaml
blob: a1e0801eabac6836e45a562a929c82a61a701f11 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
#{{ if not .Values.disableConsulConsulServer }}
apiVersion: v1
kind: Service
metadata:
  labels:
    app: consul-server
  name: consul-server
  namespace: "{{ .Values.nsPrefix }}"
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 }}
#{{ end }}