Skip to content

Commit b1a65ef

Browse files
committed
Raise mem request to 2Gi. (#487)
This change, reduced the amount of failed tests from 55 to 24 (> 50% reduction) :red_circle: CI https://ci.stackable.tech/view/02%20Operator%20Tests%20(custom)/job/kafka-operator-it-custom/15/
1 parent 207d21d commit b1a65ef

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

docs/modules/ROOT/pages/usage.adoc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -316,7 +316,7 @@ brokers:
316316
config:
317317
resources:
318318
memory:
319-
limit: '1Gi'
319+
limit: '2Gi'
320320
cpu:
321321
min: '500m'
322322
max: '4'

rust/crd/src/lib.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -276,7 +276,7 @@ impl KafkaCluster {
276276
max: Some(Quantity("4".to_owned())),
277277
},
278278
memory: MemoryLimits {
279-
limit: Some(Quantity("1Gi".to_owned())),
279+
limit: Some(Quantity("2Gi".to_owned())),
280280
runtime_limits: NoRuntimeLimits {},
281281
},
282282
storage: Storage {

0 commit comments

Comments
 (0)