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
e213b828
Commit
e213b828
authored
Sep 17, 2018
by
Carlos Tadeu Panato Junior
Committed by
k8s-ci-robot
Sep 17, 2018
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
update kapacitor to the latest release and some fixed to match best practices (#7626)
Signed-off-by:
cpanato
<
ctadeu@gmail.com
>
parent
1fa0e7d8
Hide whitespace changes
Inline
Side-by-side
Showing
5 changed files
with
12 additions
and
8 deletions
+12
-8
Chart.yaml
stable/kapacitor/Chart.yaml
+3
-3
README.md
stable/kapacitor/README.md
+2
-1
deployment.yaml
stable/kapacitor/templates/deployment.yaml
+1
-1
pvc.yaml
stable/kapacitor/templates/pvc.yaml
+3
-1
values.yaml
stable/kapacitor/values.yaml
+3
-2
No files found.
stable/kapacitor/Chart.yaml
View file @
e213b828
name
:
kapacitor
version
:
0.5.1
appVersion
:
1.
4
version
:
1.0.0
appVersion
:
1.
6.2
description
:
InfluxDB's native data processing engine. It can process both stream
and batch data from InfluxDB.
keywords
:
...
...
@@ -12,6 +12,6 @@ home: https://www.influxdata.com/time-series-platform/kapacitor/
sources
:
-
https://github.com/influxdata/kapacitor
maintainers
:
-
name
:
Jack Z
ampolin
-
name
:
jackz
ampolin
email
:
jack@influxdb.com
engine
:
gotpl
stable/kapacitor/README.md
View file @
e213b828
...
...
@@ -48,13 +48,14 @@ The following table lists the configurable parameters of the Kapacitor chart and
| Parameter | Description | Default |
| ----------------------- | ---------------------------------- | ---------------------------------------------------------- |
|
`image.repository`
| Kapacitor image |
`kapacitor`
|
|
`image.tag`
| Kapacitor image version |
`1.
2
`
|
|
`image.tag`
| Kapacitor image version |
`1.
6.2-alpine
`
|
|
`image.pullPolicy`
| Kapacitor image pull policy |
`IfNotPresent`
|
|
`service.type`
| Kapacitor web service type |
`ClusterIP`
|
|
`persistence.enabled`
| Enable Kapacitor persistence using Persistent Volume Claims |
`false`
|
|
`persistence.storageClass`
| Kapacitor Persistent Volume Storage Class |
`default`
|
|
`persistence.accessMode`
| Kapacitor Persistent Volume Access Mode |
`ReadWriteOnce`
|
|
`persistence.size`
| Kapacitor Persistent Volume Storage Size |
`8Gi`
|
|
`persistence.existingClaim`
| Kapacitor existing PVC name |
`nil`
|
|
`resources.request.memory`
| Kapacitor memory request |
`256Mi`
|
|
`resources.request.cpu`
| Kapacitor cpu request |
`0.1`
|
|
`resources.limits.memory`
| Kapacitor memory limit |
`2Gi`
|
...
...
stable/kapacitor/templates/deployment.yaml
View file @
e213b828
...
...
@@ -40,7 +40,7 @@ spec:
-
name
:
data
{{
- if .Values.persistence.enabled
}}
persistentVolumeClaim
:
claimName
:
{{
template "kapacitor.fullname" .
}}
claimName
:
{{
.Values.persistence.existingClaim | default (include "kapacitor.fullname" .)
}}
{{
- else
}}
emptyDir
:
{}
{{
- end
}}
...
...
stable/kapacitor/templates/pvc.yaml
View file @
e213b828
{{
- if .Values.persistence.enabled
}}
{{
- if and .Values.persistence.enabled (not .Values.persistence.existingClaim)
}}
{{
- if .Values.influxURL
}}
kind
:
PersistentVolumeClaim
apiVersion
:
v1
metadata
:
...
...
@@ -22,3 +23,4 @@ spec:
{{
- end
}}
{{
- end
}}
{{
- end
}}
{{
- end
}}
stable/kapacitor/values.yaml
View file @
e213b828
...
...
@@ -3,7 +3,7 @@
##
image
:
repository
:
"
kapacitor"
tag
:
"
1.
4
-alpine"
tag
:
"
1.
6.2
-alpine"
pullPolicy
:
"
IfNotPresent"
## Specify a service type, defaults to NodePort
...
...
@@ -16,7 +16,7 @@ service:
## ref: http://kubernetes.io/docs/user-guide/persistent-volumes/
##
persistence
:
enabled
:
fals
e
enabled
:
tru
e
## kapacitor data Persistent Volume Storage Class
## If defined, storageClassName: <storageClass>
## If set to "-", storageClassName: "", which disables dynamic provisioning
...
...
@@ -27,6 +27,7 @@ persistence:
# storageClass: "-"
accessMode
:
ReadWriteOnce
size
:
8Gi
# existingClaim: ""
## Configure resource requests and limits
## ref: http://kubernetes.io/docs/user-guide/compute-resources/
...
...
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