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:
parent
3a9ddb2a73
commit
1e292ad698
2 changed files with 2 additions and 1 deletions
|
@ -20,6 +20,7 @@
|
|||
- (Maintenance) Expose Context in OperatorV2 Item Handler
|
||||
- (Feature) Improve K8S Mock for UT
|
||||
- (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)
|
||||
- (Maintenance) Update go-driver to v1.6.0, update IsNotFound() checks
|
||||
|
|
|
@ -513,7 +513,7 @@ func operatorInitContainer(name, operatorImage string, command []string, securit
|
|||
Resources: core.ResourceRequirements{
|
||||
Requests: core.ResourceList{
|
||||
core.ResourceCPU: resource.MustParse("100m"),
|
||||
core.ResourceMemory: resource.MustParse("10Mi"),
|
||||
core.ResourceMemory: resource.MustParse("50Mi"),
|
||||
},
|
||||
Limits: core.ResourceList{
|
||||
core.ResourceCPU: resource.MustParse("100m"),
|
||||
|
|
Loading…
Reference in a new issue