-
Notifications
You must be signed in to change notification settings - Fork 8.3k
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
cleanup ingress class handling #5354
Conversation
[APPROVALNOTIFIER] This PR is APPROVED This pull-request has been approved by: ElvinEfendi The full list of commands accepted by this bot can be found here. The pull request process is described here
Needs approval from an approver in each of these files:
Approvers can indicate their approval by writing |
return true | ||
} | ||
|
||
if IngressClass == "" { |
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.
This condition would never hit. IngressClass
is set only when ingress-class
is not empty. Which means the only time it is set, it is set to a non-empty value.
return *className == IngressClass | ||
} | ||
|
||
if IngressClass == DefaultClass { |
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.
So here we are saying if the class name is not set in the given ingress resource, and also ingress-class
flag is not configured for the controller we then process the ingress. But this does not make sense. According to our docs if ingress-class
is not set, then the controller should be handling all the ingresses in the given cluster regardless of their ingress class.
@ElvinEfendi: The following test failed, say
Full PR test history. Your PR dashboard. Please help us cut down on flakes by linking to an open issue when you hit one in your PR. Instructions for interacting with me using PR comments are available here. If you have questions or suggestions related to my behavior, please file an issue against the kubernetes/test-infra repository. I understand the commands that are listed here. |
/cc @aledbf |
Closing. The interpretation I did of the new IngressClassName field is wrong. We need:
An example:
|
What this PR does / why we need it:
Types of changes
How Has This Been Tested?
Checklist: