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
05e796f1
Commit
05e796f1
authored
Dec 15, 2016
by
Jack Zampolin
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Require user to set .Values.influxURL
parent
36e3ca95
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
14 additions
and
3 deletions
+14
-3
NOTES.txt
stable/kapacitor/templates/NOTES.txt
+8
-0
deployment.yaml
stable/kapacitor/templates/deployment.yaml
+5
-2
values.yaml
stable/kapacitor/values.yaml
+1
-1
No files found.
stable/kapacitor/templates/NOTES.txt
View file @
05e796f1
{{- $bl := empty .Values.influxURL }}
{{- if not $bl }}
Kapacitor can be accessed via port 9092 on the following DNS name from within your cluster:
- http://{{ template "fullname" . }}.{{ .Release.Namespace }}:9092
...
...
@@ -19,4 +21,9 @@ To tail the logs for the Kapacitor pod run the following:
To watch for the LoadBalancer IP or Hostname to populate run the following:
- kubectl get svc -w --namespace {{ .Release.Namespace }} -l app={{ template "fullname" . }}
{{- end }}
{{- end }}
{{- if empty .Values.influxURL }}
You have not set .Values.influxURL. Kapacitor needs an InfluxDB instance to create a subscription on. Please set that value to deploy kapacitor
{{- end }}
\ No newline at end of file
stable/kapacitor/templates/deployment.yaml
View file @
05e796f1
{{
- $bl
:
= empty .Values.influxURL
}}
{{
- if not $bl
}}
apiVersion
:
extensions/v1beta1
kind
:
Deployment
metadata
:
...
...
@@ -37,4 +39,5 @@ spec:
claimName
:
{{
template "fullname" .
}}
{{
else
}}
emptyDir
:
{}
{{
end
}}
\ No newline at end of file
{{
end
}}
{{
- end
}}
\ No newline at end of file
stable/kapacitor/values.yaml
View file @
05e796f1
...
...
@@ -35,4 +35,4 @@ resources:
## Set the URL of InfluxDB instance to create subscription on
## ref: https://docs.influxdata.com/kapacitor/v1.1/introduction/getting_started/
##
influxURL
:
http://influxdb-influxdb.tick:8086
#
influxURL: http://influxdb-influxdb.tick:8086
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