Skip to content

Commit 6fdbf7d

Browse files
authored
CLOUDP-86201: MongoDB Kubernetes Operator 0.5.2 Release (#404)
1 parent 2137883 commit 6fdbf7d

File tree

6 files changed

+40
-4
lines changed

6 files changed

+40
-4
lines changed

config/manager/manager.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ spec:
1616
serviceAccountName: mongodb-kubernetes-operator
1717
containers:
1818
- name: mongodb-kubernetes-operator
19-
image: quay.io/mongodb/mongodb-kubernetes-operator:0.5.1
19+
image: quay.io/mongodb/mongodb-kubernetes-operator:0.5.2
2020
command:
2121
- /usr/local/bin/entrypoint
2222
imagePullPolicy: Always

config/samples/mongodb.com_v1_mongodbcommunity_ignore_unkown_users_cr.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ spec:
99
version: "4.4.0"
1010
security:
1111
authentication:
12-
ignoreUnkownUsers: true # users can be added to the deployment through other sources. (not through the CRD) and will not be removed by the agent.
12+
ignoreUnknownUsers: true # users can be added to the deployment through other sources. (not through the CRD) and will not be removed by the agent.
1313
modes: ["SCRAM"]
1414
users:
1515
- name: my-user

deploy/openshift/operator_openshift.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ spec:
1515
serviceAccountName: mongodb-kubernetes-operator
1616
containers:
1717
- name: mongodb-kubernetes-operator
18-
image: quay.io/mongodb/mongodb-kubernetes-operator:0.5.1
18+
image: quay.io/mongodb/mongodb-kubernetes-operator:0.5.2
1919
command:
2020
- mongodb-kubernetes-operator
2121
imagePullPolicy: Always

dev_notes/RELEASE_NOTES.md

+32
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,32 @@
1+
*(Please use the [release template](release-notes-template.md) as the template for this document)*
2+
<!-- Next release -->
3+
4+
# MongoDB Kubernetes Operator 0.5.2
5+
## Kubernetes Operator
6+
* Changes
7+
* Readiness probe has been moved into an init container from the Agent image.
8+
* Security context is now added when the `MANAGED_SECURITY_CONTEXT` environment variable is not set.
9+
* Bug fixes
10+
* Removed unnecessary environment variable configuration in the openshift samples.
11+
* Fixed an issue where the operator would perform unnecessary reconcilliations when Secrets were modified.
12+
* Fixed an issue where a race condition could cause the deployment to get into a bad state when TLS
13+
settings when being changed at the same time as a scaling operation was happening.
14+
* Fixed an issue where the agent pod would panic when running as a non-root user.
15+
16+
## MongoDBCommunity Resource
17+
* Changes
18+
* Added `spec.security.authentication.ignoreUnknownUsers` field. This value defaults to `true`. When enabled,
19+
any MongoDB users added through external sources will not be removed.
20+
21+
22+
## Miscellaneous
23+
* Changes
24+
* Internal code refactorings to allow libraries to be imported into other projects.
25+
26+
27+
## Updated Image Tags
28+
* mongodb-kubernetes-operator:0.5.2
29+
* mongodb-agent:10.27.0.6772-1
30+
* mongodb-kubernetes-readinessprobe:1.0.1 [new image]
31+
32+
<!-- Past Releases -->

dev_notes/release-notes-template.md

+4
Original file line numberDiff line numberDiff line change
@@ -25,6 +25,10 @@
2525
* Issue 1
2626
* Issue 2
2727

28+
## Miscellaneous
29+
* Item 1
30+
* Item 2
31+
2832
## Updated Image Tags
2933
* mongodb-kubernetes-operator:0.3.0
3034
* mongodb-agent:10.19.0.6562-1

release.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
{
2-
"mongodb-kubernetes-operator": "0.5.1",
2+
"mongodb-kubernetes-operator": "0.5.2",
33
"version-upgrade-hook": "1.0.2",
44
"readiness-probe": "1.0.1",
55
"agent": {

0 commit comments

Comments
 (0)