From 79fd55e0df671e3c5a1d64254b60d3656b795f7b Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jo=C3=A3o=20Cunha?= Date: Tue, 5 Aug 2025 14:03:49 +0200 Subject: [PATCH] Fix GitLab Exporter default listenAddr We should use `*` instead of `::` to make it compatible with IPv4 by default. Changelog: fixed --- charts/gitlab/charts/gitlab-exporter/values.yaml | 2 +- doc/charts/gitlab/gitlab-exporter/_index.md | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/charts/gitlab/charts/gitlab-exporter/values.yaml b/charts/gitlab/charts/gitlab-exporter/values.yaml index 3e62d55d90..43471a85eb 100644 --- a/charts/gitlab/charts/gitlab-exporter/values.yaml +++ b/charts/gitlab/charts/gitlab-exporter/values.yaml @@ -7,7 +7,7 @@ image: # pullSecrets: [] # tag: master -listenAddr: '::' +listenAddr: '*' service: name: gitlab-exporter diff --git a/doc/charts/gitlab/gitlab-exporter/_index.md b/doc/charts/gitlab/gitlab-exporter/_index.md index 55bd5eee21..25b609cdea 100644 --- a/doc/charts/gitlab/gitlab-exporter/_index.md +++ b/doc/charts/gitlab/gitlab-exporter/_index.md @@ -92,7 +92,7 @@ to the `helm install` command using the `--set` flags. | `psql.port` | | Set PostgreSQL server port. Takes precedence over `global.psql.port` | | `tls.enabled` | `false` | GitLab Exporter TLS enabled | | `tls.secretName` | `{Release.Name}-gitlab-exporter-tls` | GitLab Exporter TLS secret. Must point to a [Kubernetes TLS secret](https://kubernetes.io/docs/concepts/configuration/secret/#tls-secrets). | -| `listenAddr` | `::` | GitLab Exporter listen address. | +| `listenAddr` | `*` | GitLab Exporter listen address. | ## Chart configuration examples -- GitLab