[bitnami/etcd] Always use initial cluster token (#35160)

This commit is contained in:
waldner
2025-07-16 12:42:01 +00:00
committed by GitHub
parent 470f116a46
commit 3d49e70015
3 changed files with 7 additions and 5 deletions

View File

@@ -1,8 +1,12 @@
# Changelog
## 12.0.10 (2025-07-15)
## 12.0.11 (2025-07-16)
* [bitnami/etcd] :zap: :arrow_up: Update dependency references ([#35084](https://github.com/bitnami/charts/pull/35084))
* [bitnami/etcd] Always use initial cluster token ([#35160](https://github.com/bitnami/charts/pull/35160))
## <small>12.0.10 (2025-07-15)</small>
* [bitnami/etcd] :zap: :arrow_up: Update dependency references (#35084) ([6e98277](https://github.com/bitnami/charts/commit/6e982774426942dd86fc4375f3968b7a37e68fee)), closes [#35084](https://github.com/bitnami/charts/issues/35084)
## <small>12.0.9 (2025-07-10)</small>

View File

@@ -35,4 +35,4 @@ maintainers:
name: etcd
sources:
- https://github.com/bitnami/charts/tree/main/bitnami/etcd
version: 12.0.10
version: 12.0.11

View File

@@ -206,7 +206,6 @@ spec:
- name: GOMAXPROCS
value: {{ .Values.maxProcs | quote }}
{{- end }}
{{- if gt $replicaCount 1 }}
- name: ETCD_INITIAL_CLUSTER_TOKEN
value: {{ .Values.initialClusterToken | quote }}
{{- $initialCluster := list }}
@@ -215,7 +214,6 @@ spec:
{{- end }}
- name: ETCD_INITIAL_CLUSTER
value: {{ join "," $initialCluster | quote }}
{{- end }}
- name: ETCD_CLUSTER_DOMAIN
value: {{ printf "%s.%s.svc.%s" $etcdHeadlessServiceName $releaseNamespace $clusterDomain | quote }}
{{- if and .Values.auth.client.secureTransport .Values.auth.client.useAutoTLS }}