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
f8faa7f6
Commit
f8faa7f6
authored
Jun 27, 2019
by
Aisuko
Committed by
Kubernetes Prow Robot
Jun 27, 2019
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Persistence should be enabled and Notes include the password if set default user (#14411)
Signed-off-by:
Aisuko
<
urakiny@gmail.com
>
parent
fd3c6fa8
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
15 additions
and
2 deletions
+15
-2
Chart.yaml
stable/influxdb/Chart.yaml
+1
-1
NOTES.txt
stable/influxdb/templates/NOTES.txt
+13
-0
values.yaml
stable/influxdb/values.yaml
+1
-1
No files found.
stable/influxdb/Chart.yaml
View file @
f8faa7f6
apiVersion
:
v1
name
:
influxdb
version
:
1.1.
8
version
:
1.1.
9
appVersion
:
1.7.6
description
:
Scalable datastore for metrics, events, and real-time analytics.
keywords
:
...
...
stable/influxdb/templates/NOTES.txt
View file @
f8faa7f6
...
...
@@ -13,3 +13,15 @@ You can also connect to the influx cli from inside the container. To open a shel
To tail the logs for the InfluxDB pod run the following:
- kubectl logs -f --namespace {{ .Release.Namespace }} $(kubectl get pods --namespace {{ .Release.Namespace }} -l app={{ template "influxdb.fullname" . }} -o jsonpath='{ .items[0].metadata.name }')
{{- if .Values.setDefaultUser.enabled }}
To retrieve the default user name:
- echo $(kubectl get secret {{ template "influxdb.fullname" . }}-auth -o "jsonpath={.data['influxdb-user']}" --namespace {{ .Release.Namespace }} | base64 --decode)
To retrieve the default user password:
- echo $(kubectl get secret {{ template "influxdb.fullname" . }}-auth -o "jsonpath={.data['influxdb-password']}" --namespace {{ .Release.Namespace }} | base64 --decode)
{{- end }}
\ No newline at end of file
stable/influxdb/values.yaml
View file @
f8faa7f6
...
...
@@ -25,7 +25,7 @@ service:
## Persist data to a persistent volume
##
persistence
:
enabled
:
fals
e
enabled
:
tru
e
## If true will use an existing PVC instead of creating one
# useExisting: false
## Name of existing PVC to be used in the influx deployment
...
...
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