Skip to content

Commit 4b7c3d6

Browse files
authored
[Feature] Enable "Operator Maintenance Management Support" feature (#753)
1 parent 82ef8f3 commit 4b7c3d6

File tree

3 files changed

+3
-1
lines changed

3 files changed

+3
-1
lines changed

CHANGELOG.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
# Change Log
22

33
## [master](https://github.com/arangodb/kube-arangodb/tree/master) (N/A)
4+
- Enable "Operator Maintenance Management Support" by default
45
- Add Operator `/api/v1/version` endpoint
56

67
## [1.1.10](https://github.com/arangodb/kube-arangodb/tree/1.1.10) (2021-07-06)

README.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -91,6 +91,7 @@ Feature-wise production readiness table:
9191
| Encryption Key Rotation Support | 1.1.0 | > 3.7.0 | Enterprise | Production | True | --deployment.feature.encryption-rotation | N/A |
9292
| Version Check | 1.1.4 | >= 3.5.0 | Community, Enterprise | Alpha | False | --deployment.feature.upgrade-version-check | N/A |
9393
| Operator Maintenance Management Support | 1.0.7 | >= 3.5.0 | Community, Enterprise | Alpha | False | --deployment.feature.maintenance | N/A |
94+
| Operator Maintenance Management Support | 1.2.0 | >= 3.5.0 | Community, Enterprise | Production | True | --deployment.feature.maintenance | N/A |
9495
| Operator Internal Metrics Exporter | 1.1.9 | >= 3.6.0 | Community, Enterprise | Alpha | False | --deployment.feature.metrics-exporter | N/A |
9596

9697
## Release notes for 0.3.16

pkg/deployment/features/maintenance.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ var maintenance = &feature{
3131
description: "Database maintenance mode management",
3232
version: "3.5.0",
3333
enterpriseRequired: false,
34-
enabledByDefault: false,
34+
enabledByDefault: true,
3535
}
3636

3737
func Maintenance() Feature {

0 commit comments

Comments
 (0)