[teamspeak] feat: Can now change metric exporter remote (#1621)

* feat: Can now change metric exporter remote

Signed-off-by: Matt Jeanes <mattjeanes23@gmail.com>
This commit is contained in:
Matt Jeanes 2022-06-20 15:10:55 +01:00 committed by GitHub
parent 02621d64b6
commit 4ad9491cb1
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
3 changed files with 6 additions and 2 deletions

View File

@ -3,7 +3,7 @@ apiVersion: v2
appVersion: 3.13.6
description: TeamSpeak Server
name: teamspeak
version: 0.5.2
version: 0.6.0
kubeVersion: ">=1.16.0-0"
keywords:
- teamspeak
@ -21,4 +21,4 @@ dependencies:
annotations:
artifacthub.io/changes: |-
- kind: changed
description: Upgraded `common` chart dependency to version 4.4.2
description: Adds support for setting the metric exporter remote

View File

@ -32,6 +32,8 @@ additionalContainers:
args:
- -listen
- :{{ .Values.metrics.exporter.env.port }}
- -remote
- {{ .Values.metrics.exporter.env.remote }}
{{- if .Values.metrics.exporter.env.enableChannelMetrics }}
- -enablechannelmetrics
{{- end }}

View File

@ -105,6 +105,8 @@ metrics:
env:
# -- metrics port
port: 9189
# -- TeamSpeak query endpoint
remote: localhost:10011
# -- Set to true to enable gathering of channel metrics
enableChannelMetrics: false