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
8764a6bd
Commit
8764a6bd
authored
May 18, 2018
by
Mung
Committed by
k8s-ci-robot
May 18, 2018
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
support influxdb with ingress (#5099)
* support influxdb with ingress and increment version to 0.8.5 * don't default value for SSL cert and increment version to 0.9.1
parent
105ae150
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
38 additions
and
1 deletion
+38
-1
Chart.yaml
stable/influxdb/Chart.yaml
+1
-1
ingress.yaml
stable/influxdb/templates/ingress.yaml
+28
-0
values.yaml
stable/influxdb/values.yaml
+9
-0
No files found.
stable/influxdb/Chart.yaml
View file @
8764a6bd
name
:
influxdb
version
:
0.9.
0
version
:
0.9.
1
appVersion
:
1.4
description
:
Scalable datastore for metrics, events, and real-time analytics.
keywords
:
...
...
stable/influxdb/templates/ingress.yaml
0 → 100644
View file @
8764a6bd
{{
- if .Values.ingress.enabled -
}}
apiVersion
:
extensions/v1beta1
kind
:
Ingress
metadata
:
name
:
{{
template "influxdb.fullname" .
}}
labels
:
app
:
{{
template "influxdb.fullname" .
}}
chart
:
"
{{
.Chart.Name
}}-{{
.Chart.Version
}}"
release
:
"
{{
.Release.Name
}}"
heritage
:
"
{{
.Release.Service
}}"
annotations
:
{{
toYaml .Values.ingress.annotations | indent 4
}}
spec
:
{{
- if .Values.ingress.tls
}}
tls
:
-
hosts
:
-
{{
.Values.ingress.hostname | quote
}}
secretName
:
{{
.Values.ingress.secretName
}}
{{
- end
}}
rules
:
-
host
:
{{
.Values.ingress.hostname
}}
http
:
paths
:
-
path
:
/
backend
:
serviceName
:
{{
template "influxdb.fullname" .
}}
servicePort
:
8086
{{
- end -
}}
stable/influxdb/values.yaml
View file @
8764a6bd
...
...
@@ -86,6 +86,15 @@ resources:
memory
:
16Gi
cpu
:
8
ingress
:
enabled
:
false
tls
:
false
# secretName: my-tls-cert # only needed if tls above is true
hostname
:
influxdb.foobar.com
annotations
:
# kubernetes.io/ingress.class: "nginx"
# kubernetes.io/tls-acme: "true"
## Node labels for pod assignment
## Ref: https://kubernetes.io/docs/user-guide/node-selection/
##
...
...
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