From 8b6d231e449a0e2b454a0b694aac02b13bbc85d0 Mon Sep 17 00:00:00 2001 From: Aaron Molitor Date: Fri, 17 May 2024 10:48:47 -0500 Subject: [PATCH] prepare release v1.39.0 --- charts/fdb-operator/Chart.yaml | 2 +- charts/fdb-operator/values.yaml | 2 +- config/deployment/manager.yaml | 2 +- config/samples/deployment.yaml | 2 +- docs/changelog/v1.39.0.md | 13 +++++++++++++ 5 files changed, 17 insertions(+), 4 deletions(-) create mode 100644 docs/changelog/v1.39.0.md diff --git a/charts/fdb-operator/Chart.yaml b/charts/fdb-operator/Chart.yaml index b2504ba2..a3f64d94 100644 --- a/charts/fdb-operator/Chart.yaml +++ b/charts/fdb-operator/Chart.yaml @@ -18,6 +18,6 @@ type: application version: 0.2.0 # This is the version number of the application being deployed. This version number should be # incremented each time you make changes to the application. -appVersion: v1.38.0 +appVersion: v1.39.0 maintainers: - name: "foundationdb-ci" diff --git a/charts/fdb-operator/values.yaml b/charts/fdb-operator/values.yaml index 0bd4ccb2..128fb793 100644 --- a/charts/fdb-operator/values.yaml +++ b/charts/fdb-operator/values.yaml @@ -1,7 +1,7 @@ --- image: repository: foundationdb/fdb-kubernetes-operator - tag: v1.38.0 + tag: v1.39.0 pullPolicy: IfNotPresent initContainers: 6.2: diff --git a/config/deployment/manager.yaml b/config/deployment/manager.yaml index 1e931943..def7240f 100644 --- a/config/deployment/manager.yaml +++ b/config/deployment/manager.yaml @@ -83,7 +83,7 @@ spec: containers: - command: - /manager - image: foundationdb/fdb-kubernetes-operator:v1.38.0 + image: foundationdb/fdb-kubernetes-operator:v1.39.0 name: manager env: - name: WATCH_NAMESPACE diff --git a/config/samples/deployment.yaml b/config/samples/deployment.yaml index 0d928009..a3e288ab 100644 --- a/config/samples/deployment.yaml +++ b/config/samples/deployment.yaml @@ -178,7 +178,7 @@ spec: valueFrom: fieldRef: fieldPath: metadata.namespace - image: foundationdb/fdb-kubernetes-operator:v1.38.0 + image: foundationdb/fdb-kubernetes-operator:v1.39.0 name: manager ports: - containerPort: 8080 diff --git a/docs/changelog/v1.39.0.md b/docs/changelog/v1.39.0.md new file mode 100644 index 00000000..5255a8d4 --- /dev/null +++ b/docs/changelog/v1.39.0.md @@ -0,0 +1,13 @@ +# v1.39.0 + +## Changes + +### Operator + +* Unify operator args for the sidecar and unified image approach [#2030](https://github.com/FoundationDB/fdb-kubernetes-operator/pull/2030) +* Improve reliability of the reset maintenance test [#2027](https://github.com/FoundationDB/fdb-kubernetes-operator/pull/2027) +* Initial support for the unified image in the backup deployment [#2025](https://github.com/FoundationDB/fdb-kubernetes-operator/pull/2025) +* Run trivy only for the operator image [#2023](https://github.com/FoundationDB/fdb-kubernetes-operator/pull/2023) +* Update to go 1.22.3 [#2019](https://github.com/FoundationDB/fdb-kubernetes-operator/pull/2019) +* Prefer upgraded processes for coordinators when the operator chooses the coordinators [#2017](https://github.com/FoundationDB/fdb-kubernetes-operator/pull/2017) +* Add a new e2e test for knob rollout with process group replacement [#2013](https://github.com/FoundationDB/fdb-kubernetes-operator/pull/2013)