Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update Helm release etcd to v6.1.0 (main) #1398

Merged
merged 1 commit into from
Mar 12, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
26 changes: 26 additions & 0 deletions docs/release-notes/next.md
Original file line number Diff line number Diff line change
Expand Up @@ -73,4 +73,30 @@ hide_table_of_contents: true
- scheduler: `europe-docker.pkg.dev/gardener-project/releases/gardener/scheduler:v1.90.2`


</details>

<details>
<summary><b>Update etcd to <code>6.1.0</code></b></summary>

## What's Changed
* Pass through .values.backup.secretData by @j2L4e in https://github.com/gardener-community/etcd/pull/15

## New Contributors
* @j2L4e made their first contribution in https://github.com/gardener-community/etcd/pull/15

**Full Changelog**: https://github.com/gardener-community/etcd/compare/6.0.0...6.1.0

</details>

<details>
<summary><b>Update etcd to <code>6.1.0</code></b></summary>

## What's Changed
* Pass through .values.backup.secretData by @j2L4e in https://github.com/gardener-community/etcd/pull/15

## New Contributors
* @j2L4e made their first contribution in https://github.com/gardener-community/etcd/pull/15

**Full Changelog**: https://github.com/gardener-community/etcd/compare/6.0.0...6.1.0

</details>
2 changes: 1 addition & 1 deletion gardener/etcd-events.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ spec:
chart:
spec:
chart: etcd
version: 6.0.0
version: 6.1.0
sourceRef:
kind: HelmRepository
name: gardener-community-charts
Expand Down
2 changes: 1 addition & 1 deletion gardener/etcd.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ spec:
chart:
spec:
chart: etcd
version: 6.0.0
version: 6.1.0
sourceRef:
kind: HelmRepository
name: gardener-community-charts
Expand Down
2 changes: 1 addition & 1 deletion helmcharts/etcd/Chart.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -2,4 +2,4 @@ apiVersion: v2
appVersion: v3.4.26
description: Helm chart for etcd
name: etcd
version: 6.0.0
version: 6.1.0
6 changes: 3 additions & 3 deletions helmcharts/etcd/RELEASE.md
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
## What's Changed
* Downgrade to etcd 3.4.26, Upgrade to etcd-backup-restore 0.24.7 by @JensAc in https://github.com/gardener-community/etcd/pull/13
* Pass through .values.backup.secretData by @j2L4e in https://github.com/gardener-community/etcd/pull/15

## New Contributors
* @JensAc made their first contribution in https://github.com/gardener-community/etcd/pull/13
* @j2L4e made their first contribution in https://github.com/gardener-community/etcd/pull/15

**Full Changelog**: https://github.com/gardener-community/etcd/compare/5.3.2...6.0.0
**Full Changelog**: https://github.com/gardener-community/etcd/compare/6.0.0...6.1.0
23 changes: 20 additions & 3 deletions helmcharts/etcd/templates/secret-etcd-backup.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -20,21 +20,38 @@ metadata:
namespace: {{ .Release.Namespace }}
type: Opaque
data:
{{ toYaml .Values.backup.secretData | indent 2 }}

{{- if eq .Values.backup.storageProvider "ABS" }}
{{- if index .Values.backup.secretData "storage-account" }}
storageAccount: {{ index .Values.backup.secretData "storage-account" }}
{{- end }}
{{- if index .Values.backup.secretData "storage-key" }}
storageKey: {{ index .Values.backup.secretData "storage-key" }}
{{- end }}
{{- end }}

{{- if eq .Values.backup.storageProvider "Swift" }}
{{- if index .Values.backup.secretData "auth-url" }}
authURL: {{ index .Values.backup.secretData "auth-url" }}
{{- end }}
{{- if index .Values.backup.secretData "domain-name" }}
domainName: {{ index .Values.backup.secretData "domain-name" }}
password: {{ index .Values.backup.secretData "password" }}
{{- end }}
{{- if index .Values.backup.secretData "region-name" }}
region: {{ index .Values.backup.secretData "region-name" }}
{{- end }}
{{- if index .Values.backup.secretData "project-name" }}
tenantName: {{ index .Values.backup.secretData "project-name" }}
username: {{ index .Values.backup.secretData "username" }}
{{- end }}
{{- end }}

{{- if eq .Values.backup.storageProvider "S3" }}
{{- if index .Values.backup.secretData "access-key-id" }}
accessKeyID: {{ index .Values.backup.secretData "access-key-id" }}
{{- end }}
{{- if index .Values.backup.secretData "secret-access-key" }}
secretAccessKey: {{ index .Values.backup.secretData "secret-access-key" }}
region: {{ index .Values.backup.secretData "region" }}
{{- end }}
{{- end }}
{{- end }}
Loading