Skip to content
Open
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
3 changes: 3 additions & 0 deletions bindata/network/multus-admission-controller/003-webhook.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -31,6 +31,9 @@ webhooks:
# On updates, only validate if the Spec changes
- name: CreateDeleteOrUpdatedSpec
expression: oldObject == null || object == null || object.spec != oldObject.spec
# Ignore default/openshift-ovn-kubernetes NAD to avoid a race between ovn-kubernetes and the multus webhook on install
- name: IgnoreDefaultOVNKubernetesNAD
expression: object == null || object.metadata.namespace != "openshift-ovn-kubernetes" || object.metadata.name != "default"
sideEffects: NoneOnDryRun
admissionReviewVersions:
- v1
Expand Down