-
Notifications
You must be signed in to change notification settings - Fork 6.5k
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
CheckNodePIDPressure is not supported in v1.10 #2946
Conversation
I confirm, without |
ci check this |
@@ -10,7 +10,6 @@ | |||
{"name" : "GeneralPredicates"}, | |||
{"name" : "CheckNodeMemoryPressure"}, | |||
{"name" : "CheckNodeDiskPressure"}, | |||
{"name" : "CheckNodePIDPressure"}, |
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.
@Miouge1 Maybe you should just add a conditional around kube_version
var for all the ones added. However I was just going to remove it as well. :)
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.
I think this is v1.12.0-alpha.0
something like...
{% if kube_version | version_compare('v1.11', '>') %}
... however not sure on this.
probably a lot of these predicates need version checks.
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.
These changes leave the repo in a better state.
PR #2737 accidentally introduces
CheckNodePIDPressure
which is was released withv1.11
(see CHANGELOG-1.11.md, PR #60007). Since Kubespray currently supports v1.10 this PR removesCheckNodePIDPressure
.Issue reported by @avoidik on slack