Skip to content

Commit

Permalink
fix: Typo in exxecutor cpu limit property
Browse files Browse the repository at this point in the history
  • Loading branch information
sbernauer committed Jul 18, 2023
1 parent f744e7b commit d83c746
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions rust/crd/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -813,7 +813,7 @@ fn resources_to_executor_props(
"spark.kubernetes.executor.request.cores".to_string(),
cores.clone(),
);
props.insert("spark.kubernetes.executors.limit.cores".to_string(), cores);
props.insert("spark.kubernetes.executor.limit.cores".to_string(), cores);
}

if let Resources {
Expand Down Expand Up @@ -1532,7 +1532,7 @@ spec:
"512m".to_string(),
),
(
"spark.kubernetes.executors.limit.cores".to_string(),
"spark.kubernetes.executor.limit.cores".to_string(),
"2".to_string(),
),
]
Expand Down

0 comments on commit d83c746

Please sign in to comment.