Skip to content

Commit

Permalink
fix: dont restart simulation manager (#158)
Browse files Browse the repository at this point in the history
  • Loading branch information
3benbox authored Mar 5, 2024
1 parent 24f665e commit 6e51947
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion operator/src/simulation/manager.rs
Original file line number Diff line number Diff line change
Expand Up @@ -131,7 +131,7 @@ pub fn manager_job_spec(config: ManagerConfig) -> JobSpec {
})
}
JobSpec {
backoff_limit: Some(4),
backoff_limit: Some(1),
template: PodTemplateSpec {
metadata: Some(ObjectMeta {
labels: Some(BTreeMap::from_iter(vec![(
Expand Down
2 changes: 1 addition & 1 deletion operator/src/simulation/testdata/default_stubs/manager_job
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ Request {
"ownerReferences": []
},
"spec": {
"backoffLimit": 4,
"backoffLimit": 1,
"template": {
"metadata": {
"labels": {
Expand Down

0 comments on commit 6e51947

Please sign in to comment.