Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion charts/telegraf/Chart.yaml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
apiVersion: v2
name: telegraf
version: 1.8.53
version: 1.8.54
appVersion: 1.31.3
deprecated: false
description: Telegraf is an agent written in Go for collecting, processing, aggregating, and writing metrics.
Expand Down
7 changes: 7 additions & 0 deletions charts/telegraf/templates/deployment.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,13 @@ metadata:
name: {{ include "telegraf.fullname" . }}
labels:
{{- include "telegraf.labels" . | nindent 4 }}
{{- if .Values.deploymentLabels }}
{{ toYaml .Values.deploymentLabels | indent 4 }}
{{- end }}
{{- if .Values.deploymentAnnotations }}
annotations:
{{ toYaml .Values.deploymentAnnotations | indent 4 }}
{{- end }}
spec:
replicas: {{ .Values.replicaCount }}
selector:
Expand Down
7 changes: 7 additions & 0 deletions charts/telegraf/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -7,8 +7,15 @@ image:
repo: "docker.io/library/telegraf"
tag: "1.31-alpine"
pullPolicy: IfNotPresent

# Annotations/Labels to be added to Telegraf Pods
podAnnotations: {}
podLabels: {}

# Annotations/Labels to be added to Telegraf Deployments
deploymentAnnotations: {}
deploymentLabels: {}

imagePullSecrets: []
## Configure args passed to Telegraf containers
args: []
Expand Down