Skip to content

Release MongoDB Kubernetes Operator v0.7.9 #1259

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

Merged
merged 1 commit into from
Apr 5, 2023
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
4 changes: 2 additions & 2 deletions config/manager/manager.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -49,12 +49,12 @@ spec:
- name: VERSION_UPGRADE_HOOK_IMAGE
value: quay.io/mongodb/mongodb-kubernetes-operator-version-upgrade-post-start-hook:1.0.6
- name: READINESS_PROBE_IMAGE
value: quay.io/mongodb/mongodb-kubernetes-readinessprobe:1.0.12
value: quay.io/mongodb/mongodb-kubernetes-readinessprobe:1.0.13
- name: MONGODB_IMAGE
value: mongo
- name: MONGODB_REPO_URL
value: docker.io
image: quay.io/mongodb/mongodb-kubernetes-operator:0.7.8
image: quay.io/mongodb/mongodb-kubernetes-operator:0.7.9
imagePullPolicy: Always
name: mongodb-kubernetes-operator
resources:
Expand Down
4 changes: 2 additions & 2 deletions deploy/openshift/operator_openshift.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -49,14 +49,14 @@ spec:
- name: AGENT_IMAGE
value: quay.io/mongodb/mongodb-agent:12.0.15.7646-1
- name: READINESS_PROBE_IMAGE
value: quay.io/mongodb/mongodb-kubernetes-readinessprobe:1.0.12
value: quay.io/mongodb/mongodb-kubernetes-readinessprobe:1.0.13
- name: VERSION_UPGRADE_HOOK_IMAGE
value: quay.io/mongodb/mongodb-kubernetes-operator-version-upgrade-post-start-hook:1.0.6
- name: MONGODB_IMAGE
value: mongo
- name: MONGODB_REPO_URL
value: docker.io
image: quay.io/mongodb/mongodb-kubernetes-operator:0.7.8
image: quay.io/mongodb/mongodb-kubernetes-operator:0.7.9
imagePullPolicy: Always
name: mongodb-kubernetes-operator
resources:
Expand Down
13 changes: 6 additions & 7 deletions docs/RELEASE_NOTES.md
Original file line number Diff line number Diff line change
@@ -1,18 +1,17 @@
# MongoDB Kubernetes Operator 0.7.8
# MongoDB Kubernetes Operator 0.7.9

## Kubernetes Operator

- Changes
- Fix a StatefulSet controller race condition with the mongodb-agent
- Fix merging label selectors when source is nil
- Improve logging verbosity

- Fixes a bug where the readiness probe would panic if the health-status file is missing.
- Make automation agent log level configurable.


## Updated Image Tags

- mongodb-kubernetes-operator:0.7.8
- mongodb-kubernetes-operator:0.7.9
- mongodb-agent:12.0.15.7646-1
- mongodb-kubernetes-readinessprobe:1.0.12
- mongodb-kubernetes-readinessprobe:1.0.13
- mongodb-kubernetes-operator-version-upgrade-post-start-hook:1.0.6

_All the images can be found in:_
Expand Down
3 changes: 3 additions & 0 deletions docs/how-to-release.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,8 @@
## How to Release

* Prepare release PR:
* Pull the changes in the helm-charts sub module folder to get the latest main.
* `cd helm-charts && git pull origin main`.
* Update any changing versions in [release.json](../release.json).
* Ensure that [the release notes](./RELEASE_NOTES.md) are up to date for this release.
* Run `python scripts/ci/update_release.py` to update the relevant yaml manifests.
Expand All @@ -11,6 +13,7 @@
- do not merge helm-charts PR until release PR is merged and the images are pushed to quay.io.
* Commit all changes
* This also includes helm-chart submodule update (to the commit pointing in the helm-chart PR)
* To perform this step `git add helm-charts`.
* Create a PR with the title `Release MongoDB Kubernetes Operator v<operator-version>` (the title must match this pattern).
* Wait for the tests to pass and merge the PR.
* Upon approval, all new images for this release will be built and released, and a GitHub release draft will be created.
Expand Down
6 changes: 3 additions & 3 deletions release.json
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
{
"golang-builder-image": "golang:1.19",
"mongodb-kubernetes-operator": "0.7.8",
"mongodb-kubernetes-operator": "0.7.9",
"version-upgrade-hook": "1.0.6",
"readiness-probe": "1.0.12",
"readiness-probe": "1.0.13",
"mongodb-agent": {
"version": "12.0.15.7646-1",
"tools_version": "100.6.0"
}
}
}