We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f744e7b commit d83c746Copy full SHA for d83c746
rust/crd/src/lib.rs
@@ -813,7 +813,7 @@ fn resources_to_executor_props(
813
"spark.kubernetes.executor.request.cores".to_string(),
814
cores.clone(),
815
);
816
- props.insert("spark.kubernetes.executors.limit.cores".to_string(), cores);
+ props.insert("spark.kubernetes.executor.limit.cores".to_string(), cores);
817
}
818
819
if let Resources {
@@ -1532,7 +1532,7 @@ spec:
1532
"512m".to_string(),
1533
),
1534
(
1535
- "spark.kubernetes.executors.limit.cores".to_string(),
+ "spark.kubernetes.executor.limit.cores".to_string(),
1536
"2".to_string(),
1537
1538
]
0 commit comments