-
Notifications
You must be signed in to change notification settings - Fork 1.2k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Add support for topology spread constraint #12715
Changes from 2 commits
eea05ab
d153376
3157769
16acca0
253a7f0
987ae13
b967468
daaa81a
3455f98
04cebd0
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -421,20 +421,21 @@ func testConfig() *config.Config { | |
TagTemplate: network.DefaultTagTemplate, | ||
}, | ||
Features: &apiConfig.Features{ | ||
MultiContainer: apiConfig.Disabled, | ||
PodSpecAffinity: apiConfig.Disabled, | ||
PodSpecFieldRef: apiConfig.Disabled, | ||
PodSpecDryRun: apiConfig.Enabled, | ||
PodSpecHostAliases: apiConfig.Disabled, | ||
PodSpecNodeSelector: apiConfig.Disabled, | ||
PodSpecTolerations: apiConfig.Disabled, | ||
PodSpecVolumesEmptyDir: apiConfig.Disabled, | ||
PodSpecPersistentVolumeClaim: apiConfig.Disabled, | ||
PodSpecPersistentVolumeWrite: apiConfig.Disabled, | ||
PodSpecInitContainers: apiConfig.Disabled, | ||
PodSpecPriorityClassName: apiConfig.Disabled, | ||
PodSpecSchedulerName: apiConfig.Disabled, | ||
TagHeaderBasedRouting: apiConfig.Disabled, | ||
MultiContainer: apiConfig.Disabled, | ||
PodSpecAffinity: apiConfig.Disabled, | ||
PodSpecTopologySpreadConstraints: apiConfig.Disabled, | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Is this change necessary? Curious what failed when you didn't have this? There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. I'm not sure, I was mostly going off of this as an example PR 20be262. Is it safe to not include There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. I don't think these changes are necessary then - can you drop them There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Done! Also deleted the line you mentioned below |
||
PodSpecFieldRef: apiConfig.Disabled, | ||
PodSpecDryRun: apiConfig.Enabled, | ||
PodSpecHostAliases: apiConfig.Disabled, | ||
PodSpecNodeSelector: apiConfig.Disabled, | ||
PodSpecTolerations: apiConfig.Disabled, | ||
PodSpecVolumesEmptyDir: apiConfig.Disabled, | ||
PodSpecPersistentVolumeClaim: apiConfig.Disabled, | ||
PodSpecPersistentVolumeWrite: apiConfig.Disabled, | ||
PodSpecInitContainers: apiConfig.Disabled, | ||
PodSpecPriorityClassName: apiConfig.Disabled, | ||
PodSpecSchedulerName: apiConfig.Disabled, | ||
TagHeaderBasedRouting: apiConfig.Disabled, | ||
}, | ||
} | ||
} |
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -3272,16 +3272,17 @@ func reconcilerTestConfig() *config.Config { | |
DefaultExternalScheme: "http", | ||
}, | ||
Features: &cfgmap.Features{ | ||
MultiContainer: cfgmap.Disabled, | ||
PodSpecAffinity: cfgmap.Disabled, | ||
PodSpecFieldRef: cfgmap.Disabled, | ||
PodSpecDryRun: cfgmap.Enabled, | ||
PodSpecHostAliases: cfgmap.Disabled, | ||
PodSpecNodeSelector: cfgmap.Disabled, | ||
PodSpecTolerations: cfgmap.Disabled, | ||
PodSpecPriorityClassName: cfgmap.Disabled, | ||
PodSpecSchedulerName: cfgmap.Disabled, | ||
TagHeaderBasedRouting: cfgmap.Disabled, | ||
MultiContainer: cfgmap.Disabled, | ||
PodSpecAffinity: cfgmap.Disabled, | ||
PodSpecTopologySpreadConstraints: cfgmap.Disabled, | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. same question as above There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. same answer as above |
||
PodSpecFieldRef: cfgmap.Disabled, | ||
PodSpecDryRun: cfgmap.Enabled, | ||
PodSpecHostAliases: cfgmap.Disabled, | ||
PodSpecNodeSelector: cfgmap.Disabled, | ||
PodSpecTolerations: cfgmap.Disabled, | ||
PodSpecPriorityClassName: cfgmap.Disabled, | ||
PodSpecSchedulerName: cfgmap.Disabled, | ||
TagHeaderBasedRouting: cfgmap.Disabled, | ||
}, | ||
} | ||
} | ||
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.