Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
I
influxdb
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
1
Merge Requests
1
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Registry
Registry
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Jacklull
influxdb
Commits
fc4eb183
Commit
fc4eb183
authored
Apr 08, 2020
by
Joseph (Jy) Yaworski
Committed by
David McKay
May 04, 2020
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Fix UDP support for influxdb
parent
eee881f7
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
13 additions
and
4 deletions
+13
-4
ingress.yaml
charts/influxdb/templates/ingress.yaml
+7
-0
service.yaml
charts/influxdb/templates/service.yaml
+4
-3
statefulset.yaml
charts/influxdb/templates/statefulset.yaml
+2
-1
No files found.
charts/influxdb/templates/ingress.yaml
View file @
fc4eb183
...
...
@@ -22,4 +22,11 @@ spec:
backend
:
serviceName
:
{{
include "influxdb.fullname" .
}}
servicePort
:
8086
{{
- if .Values.config.udp.enabled
}}
-
path
:
/
backend
:
protocol
:
UDP
serviceName
:
{{
include "influxdb.fullname" .
}}
servicePort
:
8089
{{
- end
}}
{{
- end -
}}
charts/influxdb/templates/service.yaml
View file @
fc4eb183
...
...
@@ -24,17 +24,18 @@ spec:
{{
- end
}}
{{
- if .Values.config.collectd.enabled
}}
-
name
:
collectd
port
:
{{
.Values.config.collectd.bind_address |
default 25826
}}
port
:
{{
.Values.config.collectd.bind_address | default 25826
}}
targetPort
:
collectd
{{
- end
}}
{{
- if .Values.config.udp.enabled
}}
-
name
:
udp
port
:
{{
.Values.config.udp.bind_address | default 8089
}}
port
:
{{
.Values.config.udp.bind_address | default 8089
}}
protocol
:
UDP
targetPort
:
udp
{{
- end
}}
{{
- if .Values.config.opentsdb.enabled
}}
-
name
:
opentsdb
port
:
{{
.Values.config.opentsdb.bind_address |
default 4242
}}
port
:
{{
.Values.config.opentsdb.bind_address | default 4242
}}
targetPort
:
opentsdb
{{
- end
}}
selector
:
...
...
charts/influxdb/templates/statefulset.yaml
View file @
fc4eb183
...
...
@@ -68,7 +68,8 @@ spec:
{{
- end
}}
{{
- if .Values.config.udp.enabled
}}
-
name
:
udp
containerPort
:
{{
.Values.config.udp.bind_address | default 8089
}}
containerPort
:
{{
.Values.config.udp.bind_address | default 8089
}}
protocol
:
UDP
{{
- end
}}
{{
- if .Values.config.opentsdb.enabled
}}
-
name
:
opentsdb
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment