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
d0e9600b
Unverified
Commit
d0e9600b
authored
Mar 17, 2022
by
alespour
Committed by
GitHub
Mar 17, 2022
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
[telegraf-ds] minor fixes (#415)
* fix hostNetwork default * remove non-printable unicode char * docs: fix example of usage * update telegraf to 1.21.4
parent
80dd9d47
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
7 additions
and
8 deletions
+7
-8
Chart.yaml
charts/telegraf-ds/Chart.yaml
+2
-2
README.md
charts/telegraf-ds/README.md
+1
-1
daemonset.yaml
charts/telegraf-ds/templates/daemonset.yaml
+4
-5
No files found.
charts/telegraf-ds/Chart.yaml
View file @
d0e9600b
apiVersion
:
v1
name
:
telegraf-ds
version
:
1.0.3
0
appVersion
:
1.21.
1
version
:
1.0.3
1
appVersion
:
1.21.
4
deprecated
:
false
description
:
Telegraf is an agent written in Go for collecting, processing, aggregating, and writing metrics.
keywords
:
...
...
charts/telegraf-ds/README.md
View file @
d0e9600b
...
...
@@ -46,7 +46,7 @@ The default configuration parameters are listed in `values.yaml`. To change the
```
console
helm upgrade --install my-release \
--set
config.outputs.influxdb.url=http://foo.bar:8086
\
--set
outputs.influxdb.urls=["http://foo.bar:8086"]
\
influxdata/telegraf-ds
```
...
...
charts/telegraf-ds/templates/daemonset.yaml
View file @
d0e9600b
...
...
@@ -15,8 +15,8 @@ spec:
app.kubernetes.io/name
:
{{
include "telegraf.name" .
}}
app.kubernetes.io/instance
:
{{
.Release.Name
}}
annotations
:
#
Include a hash of the configmap in the pod template
#
This means that if the configmap changes, the deployment will be rolled
#
Include a hash of the configmap in the pod template
#
This means that if the configmap changes, the deployment will be rolled
checksum/config
:
{{
include (print $.Template.BasePath "/configmap.yaml") . | sha256sum
}}
spec
:
serviceAccountName
:
{{
template "telegraf.serviceAccountName" .
}}
...
...
@@ -75,7 +75,7 @@ spec:
-
name
:
config
configMap
:
name
:
{{
include "telegraf.fullname" .
}}
hostNetwork
:
{{
default
.Values.hostNetwork false
}}
hostNetwork
:
{{
default
false .Values.hostNetwork
}}
{{
- if .Values.dnsPolicy
}}
dnsPolicy
:
{{
.Values.dnsPolicy
}}
{{
- end
}}
...
...
@@ -86,4 +86,4 @@ spec:
{{
- with .Values.podSecurityContext
}}
securityContext
:
{{
toYaml . | indent 8
}}
{{
- end
}}
\ No newline at end of file
{{
- end
}}
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