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 9730874 commit 2c3369dCopy full SHA for 2c3369d
controller/ingress/ingress.go
@@ -68,7 +68,7 @@ func (i Ingress) supported(k8s store.K8s) (supported bool) {
68
}()
69
70
if i.controllerClass == "" {
71
- if igClassAnn == "" && igClassSpec == "" {
+ if igClassAnn == "" && i.resource.Class == "" {
72
supported = true
73
return
74
}
@@ -77,7 +77,7 @@ func (i Ingress) supported(k8s store.K8s) (supported bool) {
77
78
79
} else {
80
- if igClassAnn == "" && igClassSpec == "" && i.allowEmptyClass {
+ if igClassAnn == "" && i.resource.Class == "" && i.allowEmptyClass {
81
82
83
0 commit comments