From ed7ea3f01fbc09191739a44bb3b8302d33a8f7d1 Mon Sep 17 00:00:00 2001 From: Aaron Molitor Date: Fri, 22 Sep 2023 15:09:05 -0500 Subject: [PATCH] prepare release v1.25.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.25.0.md | 18 ++++++++++++++++++ 5 files changed, 22 insertions(+), 4 deletions(-) create mode 100644 docs/changelog/v1.25.0.md diff --git a/charts/fdb-operator/Chart.yaml b/charts/fdb-operator/Chart.yaml index d216079dd..4ec86bce2 100644 --- a/charts/fdb-operator/Chart.yaml +++ b/charts/fdb-operator/Chart.yaml @@ -21,7 +21,7 @@ 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.24.0 +appVersion: v1.25.0 maintainers: - name: "foundationdb-ci" diff --git a/charts/fdb-operator/values.yaml b/charts/fdb-operator/values.yaml index b3e5d5f03..cc7a7a513 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.24.0 + tag: v1.25.0 pullPolicy: IfNotPresent initContainers: diff --git a/config/deployment/manager.yaml b/config/deployment/manager.yaml index de3365b28..cf0bb6fc1 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.24.0 + image: foundationdb/fdb-kubernetes-operator:v1.25.0 name: manager env: - name: WATCH_NAMESPACE diff --git a/config/samples/deployment.yaml b/config/samples/deployment.yaml index 247a2c7c1..59c59d3c8 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.24.0 + image: foundationdb/fdb-kubernetes-operator:v1.25.0 name: manager ports: - containerPort: 8080 diff --git a/docs/changelog/v1.25.0.md b/docs/changelog/v1.25.0.md new file mode 100644 index 000000000..6b135c3ac --- /dev/null +++ b/docs/changelog/v1.25.0.md @@ -0,0 +1,18 @@ +# v1.25.0 + +## Changes + +### Operator + +* Split upgrade tests into tests with chaos mesh and without [#1812](https://github.com/FoundationDB/fdb-kubernetes-operator/pull/1812) +* Split upgrade tests as we hit the timeout for our CI pipeline [#1808](https://github.com/FoundationDB/fdb-kubernetes-operator/pull/1808) +* Correct the namespace creation for e2e tests [#1806](https://github.com/FoundationDB/fdb-kubernetes-operator/pull/1806) +* Allow to use max timeout for get status and allow to specify the max timeout [#1805](https://github.com/FoundationDB/fdb-kubernetes-operator/pull/1805) +* Improve operator lock handling by releasing locks once cluster is reconciled [#1803](https://github.com/FoundationDB/fdb-kubernetes-operator/pull/1803) +* Correct the value used for testing [#1802](https://github.com/FoundationDB/fdb-kubernetes-operator/pull/1802) +* Make use of the new fault tolerance methods [#1797](https://github.com/FoundationDB/fdb-kubernetes-operator/pull/1797) +* Fix the lock ID to return the correct value [#1796](https://github.com/FoundationDB/fdb-kubernetes-operator/pull/1796) +* Only set the MissingProcesses condition if the machine-readable status contains at least one process [#1794](https://github.com/FoundationDB/fdb-kubernetes-operator/pull/1794) +* Increase timeout for default single cluster upgrade [#1792](https://github.com/FoundationDB/fdb-kubernetes-operator/pull/1792) +* Initial design doc for suspending Process Groups [#1785](https://github.com/FoundationDB/fdb-kubernetes-operator/pull/1785) +* Remove unused hot-shard tool [#1784](https://github.com/FoundationDB/fdb-kubernetes-operator/pull/1784)