Skip to content
Merged
Show file tree
Hide file tree
Changes from 1 commit
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
6 changes: 3 additions & 3 deletions config/manager/manager.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -47,14 +47,14 @@ spec:
- name: AGENT_IMAGE
value: quay.io/mongodb/mongodb-agent-ubi:107.0.1.8507-1
- name: VERSION_UPGRADE_HOOK_IMAGE
value: quay.io/mongodb/mongodb-kubernetes-operator-version-upgrade-post-start-hook:1.0.8
value: quay.io/mongodb/mongodb-kubernetes-operator-version-upgrade-post-start-hook:1.0.9
- name: READINESS_PROBE_IMAGE
value: quay.io/mongodb/mongodb-kubernetes-readinessprobe:1.0.19
value: quay.io/mongodb/mongodb-kubernetes-readinessprobe:1.0.20
- name: MONGODB_IMAGE
value: mongodb-community-server
- name: MONGODB_REPO_URL
value: quay.io/mongodb
image: quay.io/mongodb/mongodb-kubernetes-operator:0.10.0
image: quay.io/mongodb/mongodb-kubernetes-operator:0.11.0
imagePullPolicy: Always
name: mongodb-kubernetes-operator
resources:
Expand Down
6 changes: 3 additions & 3 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-ubi:107.0.1.8507-1
- name: READINESS_PROBE_IMAGE
value: quay.io/mongodb/mongodb-kubernetes-readinessprobe:1.0.19
value: quay.io/mongodb/mongodb-kubernetes-readinessprobe:1.0.20
- name: VERSION_UPGRADE_HOOK_IMAGE
value: quay.io/mongodb/mongodb-kubernetes-operator-version-upgrade-post-start-hook:1.0.8
value: quay.io/mongodb/mongodb-kubernetes-operator-version-upgrade-post-start-hook:1.0.9
- name: MONGODB_IMAGE
value: mongo
- name: MONGODB_REPO_URL
value: quay.io
image: quay.io/mongodb/mongodb-kubernetes-operator:0.10.0
image: quay.io/mongodb/mongodb-kubernetes-operator:0.11.0
imagePullPolicy: Always
name: mongodb-kubernetes-operator
resources:
Expand Down
23 changes: 11 additions & 12 deletions docs/RELEASE_NOTES.md
Original file line number Diff line number Diff line change
@@ -1,19 +1,18 @@
# MongoDB Kubernetes Operator 0.10.0
# MongoDB Kubernetes Operator 0.11.0

## Released images signed
## Migrating agent images to ubi
All agent images were updated to use the ubi repo

All container images published for the community operator are signed with our private key. This is visible on our Quay registry. Signature can be verified using our public key, which is available at [this address](https://cosign.mongodb.com/mongodb-enterprise-kubernetes-operator.pem).
## Documentation improvements
Improvements were made to the documentatio of using the community operator as well as the one for local development.

Copy link
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Small typo here

## Logging changes
- The agent logging can be configured to stdout
- ReadinessProbe logging configuration can now be configured
- More can be found [here](logging.md).
- Added `AuditLogRotate` field to `AgentConfiguration`
- Fixed JSON key to be lower case: `logRotate`

## Overriding Mongod settings via the CRD
- Example can be found [here](../config/samples/mongodb.com_v1_mongodbcommunity_override_ac_setting.yaml).

## ReadinessProbe error logging
- fixed a red herring which caused the probe to panic when the health status is not available. Instead it will just log the error
## Bug Fixes
- Users removed from the resource are now also deleted from the database and their connection string secretes are cleaned up
- Colisions of the scram secret name will now be spotted by spec validation
Copy link
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Typo here as well (secretes)


Copy link
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Typo as well here (spelling)
I would rephrase it with something like "Scram secret name collisions will now be caught when validating specs."

## Important Bumps
- Bumped K8S libs to 1.27
- Bumped go to 1.22
2 changes: 1 addition & 1 deletion release.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"golang-builder-image": "golang:1.22",
"operator": "0.10.0",
"operator": "0.11.0",
"version-upgrade-hook": "1.0.9",
"readiness-probe": "1.0.20",
"agent": "107.0.1.8507-1",
Expand Down
Loading