From ff33fbeeb5494bbe20236b5252ff9a9fff2e13d5 Mon Sep 17 00:00:00 2001 From: Aaron Molitor Date: Mon, 9 Oct 2023 17:01:46 -0500 Subject: [PATCH] prepare release v1.26.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.26.0.md | 20 ++++++++++++++++++++ 5 files changed, 24 insertions(+), 4 deletions(-) create mode 100644 docs/changelog/v1.26.0.md diff --git a/charts/fdb-operator/Chart.yaml b/charts/fdb-operator/Chart.yaml index 4ec86bce2..637d38ec3 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.25.0 +appVersion: v1.26.0 maintainers: - name: "foundationdb-ci" diff --git a/charts/fdb-operator/values.yaml b/charts/fdb-operator/values.yaml index cc7a7a513..204a537c8 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.25.0 + tag: v1.26.0 pullPolicy: IfNotPresent initContainers: diff --git a/config/deployment/manager.yaml b/config/deployment/manager.yaml index cf0bb6fc1..c8d5979b3 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.25.0 + image: foundationdb/fdb-kubernetes-operator:v1.26.0 name: manager env: - name: WATCH_NAMESPACE diff --git a/config/samples/deployment.yaml b/config/samples/deployment.yaml index 59c59d3c8..ad8355fdd 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.25.0 + image: foundationdb/fdb-kubernetes-operator:v1.26.0 name: manager ports: - containerPort: 8080 diff --git a/docs/changelog/v1.26.0.md b/docs/changelog/v1.26.0.md new file mode 100644 index 000000000..cc3f664af --- /dev/null +++ b/docs/changelog/v1.26.0.md @@ -0,0 +1,20 @@ +# v1.26.0 + +## Changes + +### Operator + +* Correct the way an empty result is interpreted [#1828](https://github.com/FoundationDB/fdb-kubernetes-operator/pull/1828) +* Add coordinator fault tolerance check [#1827](https://github.com/FoundationDB/fdb-kubernetes-operator/pull/1827) +* Fix the exclusion logic for Pods that are recreated before being fully excluded [#1825](https://github.com/FoundationDB/fdb-kubernetes-operator/pull/1825) +* Let operator replace processes that are excluded but not yet marked as removed [#1824](https://github.com/FoundationDB/fdb-kubernetes-operator/pull/1824) +* Improve test stability [#1823](https://github.com/FoundationDB/fdb-kubernetes-operator/pull/1823) +* Handle large exclusions better [#1822](https://github.com/FoundationDB/fdb-kubernetes-operator/pull/1822) +* Add e2e test for changing a cluster to use DNS in cluster files [#1821](https://github.com/FoundationDB/fdb-kubernetes-operator/pull/1821) +* Add first upgrade test with DNS usage in cluster file and correct statement about DNS [#1820](https://github.com/FoundationDB/fdb-kubernetes-operator/pull/1820) +* Service missing namespace [#1818](https://github.com/FoundationDB/fdb-kubernetes-operator/pull/1818) +* Investigate HA test failures [#1817](https://github.com/FoundationDB/fdb-kubernetes-operator/pull/1817) +* Remove the MissingPVC condition for stateless processes [#1815](https://github.com/FoundationDB/fdb-kubernetes-operator/pull/1815) +* Add first set of tests for locality based exclusions and fix bug in locality based exclusions [#1811](https://github.com/FoundationDB/fdb-kubernetes-operator/pull/1811) +* Make use of errgroup and simplify some testing code [#1810](https://github.com/FoundationDB/fdb-kubernetes-operator/pull/1810) +* Refactor code to make use of the process group directly without passing the class and id number down [#1807](https://github.com/FoundationDB/fdb-kubernetes-operator/pull/1807)