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
105ae150
Commit
105ae150
authored
May 11, 2018
by
sysC0D
Committed by
k8s-ci-robot
May 11, 2018
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
[stable/influxdb] Add service variables to influx (#4419)
* Add service spec * Update Chart.yaml
parent
6a77d31c
Show whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
23 additions
and
1 deletion
+23
-1
Chart.yaml
stable/influxdb/Chart.yaml
+1
-1
service.yaml
stable/influxdb/templates/service.yaml
+14
-0
values.yaml
stable/influxdb/values.yaml
+8
-0
No files found.
stable/influxdb/Chart.yaml
View file @
105ae150
name
:
influxdb
version
:
0.
8.4
version
:
0.
9.0
appVersion
:
1.4
description
:
Scalable datastore for metrics, events, and real-time analytics.
keywords
:
...
...
stable/influxdb/templates/service.yaml
View file @
105ae150
...
...
@@ -13,6 +13,20 @@ metadata:
heritage
:
"
{{
.Release.Service
}}"
spec
:
type
:
{{
.Values.service.type
}}
{{
- if .Values.service.clusterIP
}}
clusterIP
:
{{
.Values.service.clusterIP
}}
{{
- end
}}
{{
- if .Values.service.externalIPs
}}
externalIPs
:
{{
toYaml .Values.service.externalIPs | indent 4
}}
{{
- end
}}
{{
- if .Values.service.loadBalancerIP
}}
loadBalancerIP
:
{{
.Values.service.loadBalancerIP
}}
{{
- end
}}
{{
- if .Values.service.loadBalancerSourceRanges
}}
loadBalancerSourceRanges
:
{{
toYaml .Values.service.loadBalancerSourceRanges | indent 4
}}
{{
- end
}}
ports
:
{{
- if .Values.config.http.enabled
}}
-
name
:
api
...
...
stable/influxdb/values.yaml
View file @
105ae150
...
...
@@ -13,6 +13,14 @@ service:
## Add annotations to service
# annotations: {}
type
:
ClusterIP
## Add IP Cluster
# clusterIP: ""
## Add external IPs that route to one or more cluster nodes
# externalIPs: []
## Specify LoadBalancer IP (only allow on some cloud provider)
# loadBalancerIP: ""
## Allow source IPs to access on service (if empty, any access allow)
# loadBalancerSourceRanges: []
## Persist data to a persistent volume
##
...
...
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