Skip to content

Commit bfb9d12

Browse files
committed
fix: bum scheduler memory to 1.5GB to avoid OOM in tests
1 parent 6acd697 commit bfb9d12

2 files changed

Lines changed: 2 additions & 2 deletions

File tree

CHANGELOG.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@
2727
- BREAKING: Removed product-config machinery. This is a breaking change in terms of configuration.
2828
 Users relying on the product-config `properties.yaml` file have to set these properties via the CRD.
2929
The `--product-config` CLI flag is now a no-op ([#804]).
30-
- Increase the Scheduler default resources from 1GB -> 1.2GB memory ([#804]).
30+
- Increase the Scheduler default resources from 1GB -> 1.5GB memory ([#804]).
3131

3232
### Fixed
3333

rust/operator-binary/src/crd/mod.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -937,7 +937,7 @@ fn default_resources(role: &AirflowRole) -> ResourcesFragment<AirflowStorageConf
937937
max: Some(Quantity("2".to_owned())),
938938
},
939939
MemoryLimitsFragment {
940-
limit: Some(Quantity("1.2Gi".to_owned())),
940+
limit: Some(Quantity("1.5Gi".to_owned())),
941941
runtime_limits: NoRuntimeLimitsFragment {},
942942
},
943943
),

0 commit comments

Comments
 (0)