We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 368c8b6 commit bdf07d1Copy full SHA for bdf07d1
internal/ingress/store/store.go
@@ -174,7 +174,8 @@ func (s Store) ListIngressesV1() []*networkingv1.Ingress {
174
s.logger.Warnf("listIngressesV1: dropping object of unexpected type: %#v", item)
175
continue
176
}
177
- if !s.isValidIngressClass(&ing.ObjectMeta, s.ingressClassMatching) { // TODO
+ // TODO: Implement ingress class matching that uses the IngressV1 field (#590).
178
+ if !s.isValidIngressClass(&ing.ObjectMeta, s.ingressClassMatching) {
179
180
181
ingresses = append(ingresses, ing)
0 commit comments