We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 77ca292 commit 8942c35Copy full SHA for 8942c35
internal/controller/state/graph/gateway_listener.go
@@ -301,6 +301,9 @@ func getAndValidateListenerSupportedKinds(listener v1.Listener) (
301
}
302
// Use kind as key for uniqueness
303
key := string(kind.Kind)
304
+ if kind.Group != nil {
305
+ key = string(*kind.Group) + "/" + key
306
+ }
307
if _, exists := unique[key]; !exists {
308
unique[key] = struct{}{}
309
supportedKinds = append(supportedKinds, kind)
0 commit comments