From 57a6f48d56d852730acdb5e3cc4621476e30e8cb Mon Sep 17 00:00:00 2001 From: Colin Adler Date: Mon, 9 Jan 2023 19:02:39 -0600 Subject: [PATCH] fix: use correct prometheus port in helm chart --- helm/templates/coder.yaml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/helm/templates/coder.yaml b/helm/templates/coder.yaml index 85b01254a51e9..fa4d16465e676 100644 --- a/helm/templates/coder.yaml +++ b/helm/templates/coder.yaml @@ -55,7 +55,7 @@ spec: - name: CODER_HTTP_ADDRESS value: "0.0.0.0:8080" - name: CODER_PROMETHEUS_ADDRESS - value: "0.0.0.0:6060" + value: "0.0.0.0:2112" # Set the default access URL so a `helm apply` works by default. # See: https://github.com/coder/coder/issues/5024 {{- $hasAccessURL := false }} @@ -98,7 +98,7 @@ spec: */}} {{- if eq .value "true" }} - name: "prometheus-http" - containerPort: 6060 + containerPort: 2112 protocol: TCP {{- end }} {{- end }}