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
d6b28ce6
Commit
d6b28ce6
authored
Sep 04, 2017
by
Guang Ya Liu
Committed by
Adnan Abdulhussein
Sep 04, 2017
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
[stable/chronograf] Use storageClassName for chronograf. (#1968)
* [stable/chronograf] Use storageClassName for chronograf. * fix pvc conditional typo
parent
12b1f47f
Show whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
15 additions
and
10 deletions
+15
-10
Chart.yaml
stable/chronograf/Chart.yaml
+1
-1
pvc.yaml
stable/chronograf/templates/pvc.yaml
+7
-6
values.yaml
stable/chronograf/values.yaml
+7
-3
No files found.
stable/chronograf/Chart.yaml
View file @
d6b28ce6
name
:
chronograf
version
:
0.2.
1
version
:
0.2.
2
description
:
Open-source web application written in Go and React.js that provides the tools to visualize your monitoring data and easily create alerting and automation rules.
keywords
:
-
chronograf
...
...
stable/chronograf/templates/pvc.yaml
View file @
d6b28ce6
...
...
@@ -8,16 +8,17 @@ metadata:
chart
:
"
{{
.Chart.Name
}}-{{
.Chart.Version
}}"
release
:
"
{{
.Release.Name
}}"
heritage
:
"
{{
.Release.Service
}}"
annotations
:
{{
- if .Values.persistence.storageClass
}}
volume.beta.kubernetes.io/storage-class
:
{{
.Values.persistence.storageClass | quote
}}
{{
- else
}}
volume.alpha.kubernetes.io/storage-class
:
default
{{
- end
}}
spec
:
accessModes
:
-
{{
.Values.persistence.accessMode | quote
}}
resources
:
requests
:
storage
:
{{
.Values.persistence.size | quote
}}
{{
- if .Values.persistence.storageClass
}}
{{
- if (eq "-" .Values.persistence.storageClass)
}}
storageClassName
:
"
"
{{
- else
}}
storageClassName
:
"
{{
.Values.persistence.storageClass
}}"
{{
- end
}}
{{
- end
}}
{{
- end
}}
stable/chronograf/values.yaml
View file @
d6b28ce6
...
...
@@ -17,10 +17,14 @@ service:
##
persistence
:
enabled
:
false
## If defined, volume.beta.kubernetes.io/storage-class: <storageClass>
## Default: volume.alpha.kubernetes.io/storage-class: default
## chronograf data Persistent Volume Storage Class
## If defined, storageClassName: <storageClass>
## If set to "-", storageClassName: "", which disables dynamic provisioning
## If undefined (the default) or set to null, no storageClassName spec is
## set, choosing the default provisioner. (gp2 on AWS, standard on
## GKE, AWS & OpenStack)
##
# storageClass:
# storageClass:
"-"
accessMode
:
ReadWriteOnce
size
:
8Gi
...
...
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