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

fix: use correct port definitions (#136)

parent 2327e480
apiVersion: v2 apiVersion: v2
version: 0.1.2 version: 0.1.3
appVersion: 1.8.0 appVersion: 1.8.0
engine: gotpl engine: gotpl
......
...@@ -17,11 +17,20 @@ spec: ...@@ -17,11 +17,20 @@ spec:
protocol: TCP protocol: TCP
name: rpc name: rpc
- port: 8089 - port: 8089
protocol: TCP protocol: UDP
name: 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 protocol: TCP
name: raft name: opentsdb
- port: 25826
protocol: UDP
name: collectd
selector: selector:
influxdb.influxdata.com/component: data influxdb.influxdata.com/component: data
{{- include "influxdb-enterprise.selectorLabels" . | nindent 4 }} {{- include "influxdb-enterprise.selectorLabels" . | nindent 4 }}
...@@ -75,11 +75,23 @@ spec: ...@@ -75,11 +75,23 @@ spec:
value: {{ include "influxdb-enterprise.fullname" . }} value: {{ include "influxdb-enterprise.fullname" . }}
ports: ports:
- name: http - name: http
containerPort: 8088 containerPort: 8086
protocol: TCP protocol: TCP
- name: raft - name: raft
containerPort: 8088
protocol: TCP
- name: udp
containerPort: 8089 containerPort: 8089
protocol: UDP
- name: graphite
containerPort: 2003
protocol: TCP
- name: opentsdb
containerPort: 4242
protocol: TCP protocol: TCP
- name: collectd
containerPort: 25826
protocol: UDP
livenessProbe: livenessProbe:
httpGet: httpGet:
path: /ping 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