Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 10 additions & 0 deletions webhook/psbinding/psbinding.go
Original file line number Diff line number Diff line change
Expand Up @@ -134,6 +134,11 @@ var (
Key: duck.BindingExcludeLabel,
Operator: metav1.LabelSelectorOpNotIn,
Values: []string{"true"},
}, {
// "control-plane" is added to support Azure's AKS, otherwise the controllers fight.
// See knative/pkg#1590 for details.
Key: "control-plane",
Operator: metav1.LabelSelectorOpDoesNotExist,
}},
// TODO(mattmoor): Consider also having a GVR-based one, e.g.
// foobindings.blah.knative.dev/exclude: "true"
Expand All @@ -143,6 +148,11 @@ var (
Key: duck.BindingIncludeLabel,
Operator: metav1.LabelSelectorOpIn,
Values: []string{"true"},
}, {
// "control-plane" is added to support Azure's AKS, otherwise the controllers fight.
// See knative/pkg#1590 for details.
Key: "control-plane",
Operator: metav1.LabelSelectorOpDoesNotExist,
}},
// TODO(mattmoor): Consider also having a GVR-based one, e.g.
// foobindings.blah.knative.dev/include: "true"
Expand Down