From f37605dcd75b1f3a3d62715934a92bc5773c4e50 Mon Sep 17 00:00:00 2001 From: Hashem Baktash <7144162+bktsh@users.noreply.github.com> Date: Thu, 5 Sep 2024 14:42:27 -0500 Subject: [PATCH] prepare release v1.47.0 (#2128) --- 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.47.0.md | 12 ++++++++++++ 5 files changed, 16 insertions(+), 4 deletions(-) create mode 100644 docs/changelog/v1.47.0.md diff --git a/charts/fdb-operator/Chart.yaml b/charts/fdb-operator/Chart.yaml index 723db749..7340b096 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.46.0 +appVersion: v1.47.0 maintainers: - name: "foundationdb-ci" diff --git a/charts/fdb-operator/values.yaml b/charts/fdb-operator/values.yaml index 0341aa7b..f673add8 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.46.0 + tag: v1.47.0 pullPolicy: IfNotPresent initContainers: 6.2: diff --git a/config/deployment/manager.yaml b/config/deployment/manager.yaml index 8473ea0a..54309d5e 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.46.0 + image: foundationdb/fdb-kubernetes-operator:v1.47.0 name: manager env: - name: WATCH_NAMESPACE diff --git a/config/samples/deployment.yaml b/config/samples/deployment.yaml index ebe28d46..66e21f90 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.46.0 + image: foundationdb/fdb-kubernetes-operator:v1.47.0 name: manager ports: - containerPort: 8080 diff --git a/docs/changelog/v1.47.0.md b/docs/changelog/v1.47.0.md new file mode 100644 index 00000000..8183f6d3 --- /dev/null +++ b/docs/changelog/v1.47.0.md @@ -0,0 +1,12 @@ +# v1.47.0 + +## Changes + +### Operator + +* Add test suite name into namespace and cluster name to reduce conflicts [#2126](https://github.com/FoundationDB/fdb-kubernetes-operator/pull/2126) +* Refactor exec code to share same code and add plugin e2e test suite [#2122](https://github.com/FoundationDB/fdb-kubernetes-operator/pull/2122) +* Initial docs for coordinator recovery and e2e test [#2121](https://github.com/FoundationDB/fdb-kubernetes-operator/pull/2121) +* Read the coordinator IPs from the running Pods if they are present [#2119](https://github.com/FoundationDB/fdb-kubernetes-operator/pull/2119) +* Only release the lock when the cluster is reconciled [#2117](https://github.com/FoundationDB/fdb-kubernetes-operator/pull/2117) +* Improve logging for fdbclient and lock client to see what subreconciler issued the command [#2116](https://github.com/FoundationDB/fdb-kubernetes-operator/pull/2116)