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

Increase operator init containers memory request to 50mi (#1507)

* Increase operator init containers memory request to 50mi

* Update CHANGELOG.md
This commit is contained in:
Nikita Vaniasin 2023-11-28 12:06:51 +01:00 committed by GitHub
parent 3a9ddb2a73
commit 1e292ad698
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 2 additions and 1 deletions

View file

@ -20,6 +20,7 @@
- (Maintenance) Expose Context in OperatorV2 Item Handler - (Maintenance) Expose Context in OperatorV2 Item Handler
- (Feature) Improve K8S Mock for UT - (Feature) Improve K8S Mock for UT
- (Feature) (ML) Introduce basic Conditions - (Feature) (ML) Introduce basic Conditions
- (Improvement) Raise memory requests for init containers to 50mi
## [1.2.35](https://github.com/arangodb/kube-arangodb/tree/1.2.35) (2023-11-06) ## [1.2.35](https://github.com/arangodb/kube-arangodb/tree/1.2.35) (2023-11-06)
- (Maintenance) Update go-driver to v1.6.0, update IsNotFound() checks - (Maintenance) Update go-driver to v1.6.0, update IsNotFound() checks

View file

@ -513,7 +513,7 @@ func operatorInitContainer(name, operatorImage string, command []string, securit
Resources: core.ResourceRequirements{ Resources: core.ResourceRequirements{
Requests: core.ResourceList{ Requests: core.ResourceList{
core.ResourceCPU: resource.MustParse("100m"), core.ResourceCPU: resource.MustParse("100m"),
core.ResourceMemory: resource.MustParse("10Mi"), core.ResourceMemory: resource.MustParse("50Mi"),
}, },
Limits: core.ResourceList{ Limits: core.ResourceList{
core.ResourceCPU: resource.MustParse("100m"), core.ResourceCPU: resource.MustParse("100m"),