1
0
Fork 0
mirror of https://github.com/arangodb/kube-arangodb.git synced 2024-12-14 11:57:37 +00:00

[Feature] Enable "Operator Maintenance Management Support" feature (#753)

This commit is contained in:
Adam Janikowski 2021-07-14 15:03:53 +02:00 committed by GitHub
parent 82ef8f3b0e
commit 4b7c3d6aa6
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
3 changed files with 3 additions and 1 deletions

View file

@ -1,6 +1,7 @@
# Change Log
## [master](https://github.com/arangodb/kube-arangodb/tree/master) (N/A)
- Enable "Operator Maintenance Management Support" by default
- Add Operator `/api/v1/version` endpoint
## [1.1.10](https://github.com/arangodb/kube-arangodb/tree/1.1.10) (2021-07-06)

View file

@ -91,6 +91,7 @@ Feature-wise production readiness table:
| Encryption Key Rotation Support | 1.1.0 | > 3.7.0 | Enterprise | Production | True | --deployment.feature.encryption-rotation | N/A |
| Version Check | 1.1.4 | >= 3.5.0 | Community, Enterprise | Alpha | False | --deployment.feature.upgrade-version-check | N/A |
| Operator Maintenance Management Support | 1.0.7 | >= 3.5.0 | Community, Enterprise | Alpha | False | --deployment.feature.maintenance | N/A |
| Operator Maintenance Management Support | 1.2.0 | >= 3.5.0 | Community, Enterprise | Production | True | --deployment.feature.maintenance | N/A |
| Operator Internal Metrics Exporter | 1.1.9 | >= 3.6.0 | Community, Enterprise | Alpha | False | --deployment.feature.metrics-exporter | N/A |
## Release notes for 0.3.16

View file

@ -31,7 +31,7 @@ var maintenance = &feature{
description: "Database maintenance mode management",
version: "3.5.0",
enterpriseRequired: false,
enabledByDefault: false,
enabledByDefault: true,
}
func Maintenance() Feature {