data-service.yaml 616 Bytes
Newer Older
1 2 3 4 5 6 7 8 9 10 11 12
apiVersion: v1
kind: Service
metadata:
  name: {{ template "influxdb-enterprise.fullname" . }}-data
  labels:
    influxdb.influxdata.com/component: data
    {{- include "influxdb-enterprise.labels" . | nindent 4 }}
spec:
  type: ClusterIP
  clusterIP: None
  publishNotReadyAddresses: true
  ports:
13 14 15
  - port: 8086
    protocol: TCP
    name: http
16 17 18 19 20 21 22 23 24 25 26 27
  - port: 8088
    protocol: TCP
    name: rpc
  - port: 8089
    protocol: TCP
    name: udp
  - port: 8091
    protocol: TCP
    name: raft
  selector:
    influxdb.influxdata.com/component: data
    {{- include "influxdb-enterprise.selectorLabels" . | nindent 4 }}