Unverified Commit f1a43a9f authored by David McKay's avatar David McKay Committed by GitHub

fix: use correct port definitions (#136)

parent 2327e480
apiVersion: v2
version: 0.1.2
version: 0.1.3
appVersion: 1.8.0
engine: gotpl
......
......@@ -17,11 +17,20 @@ spec:
protocol: TCP
name: rpc
- port: 8089
protocol: TCP
protocol: UDP
name: udp
- port: 8091
- port: 2003
# Graphite supports TCP and UDP,
# so this should __maybe__ be configurable
# Though most use TCP
protocol: TCP
name: graphite
- port: 4242
protocol: TCP
name: raft
name: opentsdb
- port: 25826
protocol: UDP
name: collectd
selector:
influxdb.influxdata.com/component: data
{{- include "influxdb-enterprise.selectorLabels" . | nindent 4 }}
......@@ -75,11 +75,23 @@ spec:
value: {{ include "influxdb-enterprise.fullname" . }}
ports:
- name: http
containerPort: 8088
containerPort: 8086
protocol: TCP
- name: raft
containerPort: 8088
protocol: TCP
- name: udp
containerPort: 8089
protocol: UDP
- name: graphite
containerPort: 2003
protocol: TCP
- name: opentsdb
containerPort: 4242
protocol: TCP
- name: collectd
containerPort: 25826
protocol: UDP
livenessProbe:
httpGet:
path: /ping
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment