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 354ced6 commit b109a12Copy full SHA for b109a12
vendor/knative.dev/operator/pkg/reconciler/common/install.go
@@ -34,7 +34,7 @@ var (
34
role mf.Predicate = mf.Any(mf.ByKind("ClusterRole"), mf.ByKind("Role"))
35
rolebinding mf.Predicate = mf.Any(mf.ByKind("ClusterRoleBinding"), mf.ByKind("RoleBinding"))
36
webhook mf.Predicate = mf.Any(mf.ByKind("MutatingWebhookConfiguration"), mf.ByKind("ValidatingWebhookConfiguration"))
37
- webhookDependentResources mf.Predicate = byGV(schema.GroupKind{Group: "networking.internal.knative.dev", Kind: "Certificate"})
+ webhookDependentResources mf.Predicate = mf.Any(byGV(schema.GroupKind{Group: "networking.internal.knative.dev", Kind: "Certificate"}), mf.ByKind("ConfigMap"))
38
gatewayNotMatch = "no matches for kind \"Gateway\""
39
)
40
0 commit comments