From 1024066f65e09505b31925b504a9457ed6a49c0c Mon Sep 17 00:00:00 2001 From: David Gomez Date: Mon, 11 Nov 2024 11:30:27 +0100 Subject: [PATCH] [bitnami/cilium] Fix typos with clusterName and certificates (#30316) * [bitnami/cilium] Fix typos with clusterName and certificates Signed-off-by: David Gomez * [bitnami/cilium] Rebase main and update version Signed-off-by: David Gomez * Update CHANGELOG.md Signed-off-by: Bitnami Containers * [bitnami/cilium] Using relay certs to avoid future issues with DNS names Signed-off-by: David Gomez * Update CHANGELOG.md Signed-off-by: Bitnami Containers --------- Signed-off-by: David Gomez Signed-off-by: Bitnami Containers Co-authored-by: Bitnami Containers --- bitnami/cilium/CHANGELOG.md | 10 ++++++++-- bitnami/cilium/Chart.yaml | 2 +- bitnami/cilium/templates/hubble-relay/configmap.yaml | 8 ++++---- 3 files changed, 13 insertions(+), 7 deletions(-) diff --git a/bitnami/cilium/CHANGELOG.md b/bitnami/cilium/CHANGELOG.md index 580de3e611..5fd44581f3 100644 --- a/bitnami/cilium/CHANGELOG.md +++ b/bitnami/cilium/CHANGELOG.md @@ -1,8 +1,14 @@ # Changelog -## 1.2.6 (2024-11-07) +## 1.2.7 (2024-11-11) -* [bitnami/cilium] Release 1.2.6 ([#30257](https://github.com/bitnami/charts/pull/30257)) +* [bitnami/cilium] Fix typos with clusterName and certificates ([#30316](https://github.com/bitnami/charts/pull/30316)) + +## 1.2.6 (2024-11-07) + +* [bitnami/*] Remove wrong comment about imagePullPolicy (#30107) ([a51f9e4](https://github.com/bitnami/charts/commit/a51f9e4bb0fbf77199512d35de7ac8abe055d026)), closes [#30107](https://github.com/bitnami/charts/issues/30107) +* [bitnami/cilium] Release 1.2.6 (#30257) ([3c229a3](https://github.com/bitnami/charts/commit/3c229a35932ce356dcaf81fd11897c45726f330b)), closes [#30257](https://github.com/bitnami/charts/issues/30257) +* Update documentation links to techdocs.broadcom.com (#29931) ([f0d9ad7](https://github.com/bitnami/charts/commit/f0d9ad78f39f633d275fc576d32eae78ded4d0b8)), closes [#29931](https://github.com/bitnami/charts/issues/29931) ## 1.2.5 (2024-10-16) diff --git a/bitnami/cilium/Chart.yaml b/bitnami/cilium/Chart.yaml index 5307aecae9..70fb4c1319 100644 --- a/bitnami/cilium/Chart.yaml +++ b/bitnami/cilium/Chart.yaml @@ -52,4 +52,4 @@ sources: - https://github.com/bitnami/containers/tree/main/bitnami/hubble-relay - https://github.com/bitnami/containers/tree/main/bitnami/hubble-ui - https://github.com/bitnami/containers/tree/main/bitnami/hubble-ui-backend -version: 1.2.6 +version: 1.2.7 diff --git a/bitnami/cilium/templates/hubble-relay/configmap.yaml b/bitnami/cilium/templates/hubble-relay/configmap.yaml index d7c413e41a..4141e2a36f 100644 --- a/bitnami/cilium/templates/hubble-relay/configmap.yaml +++ b/bitnami/cilium/templates/hubble-relay/configmap.yaml @@ -10,7 +10,7 @@ Return the Hubbley Relay configuration. {{- if .Values.hubble.relay.configuration }} {{- include "common.tplvalues.render" (dict "value" .Values.hubble.relay.configuration .) }} {{- else }} -cluster-name: default +cluster-name: {{ .Values.clusterName | quote }} peer-service: {{ printf "%s.%s.svc.%s:%d" (printf "%s-hubble-peers" (include "common.names.fullname" .) | trunc 63 | trimSuffix "-") (include "common.names.namespace" .) .Values.clusterDomain (int .Values.hubble.peers.service.port) | quote }} listen-address: {{ printf ":%d" (int .Values.hubble.relay.containerPorts.grpc) | quote }} {{- if .Values.hubble.relay.metrics.enabled }} @@ -26,12 +26,12 @@ pprof-listen-address: "localhost" pprof-port: {{ printf "%d" (int .Values.hubble.relay.containerPorts.pprof) | quote }} {{- end }} {{- if .Values.hubble.tls.enabled }} -tls-hubble-client-cert-file: /certs/relay/tls.crt -tls-hubble-client-key-file: /certs/relay/tls.key -tls-hubble-server-ca-files: /certs/relay/ca.crt tls-relay-server-cert-file: /certs/relay/tls.crt tls-relay-server-key-file: /certs/relay/tls.key tls-relay-client-ca-files: /certs/relay/ca.crt +tls-hubble-server-ca-files: /certs/relay/ca.crt +tls-hubble-client-cert-file: /certs/relay/tls.crt +tls-hubble-client-key-file: /certs/relay/tls.key {{- else }} disable-client-tls: true disable-server-tls: true