You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository has been archived by the owner on Sep 26, 2023. It is now read-only.
Hey,
after installing gatekeeper operator on openshift cluster it gives an error in operator do network
oc describe co network
Message: Error while updating operator configuration: could not apply (/v1, Kind=Namespace) /openshift-multus: could not update object (/v1, Kind=Namespace) /openshift-multus: admission webhook "check-ignore-label.gatekeeper.sh" denied the request: Only exempt namespace can have the admission.gatekeeper.sh/ignore label
I noticed that the ValidatingWebhookConfiguration/gatekeeper-validating-webhook-configuration feature doesn't have matchExpressions to ignore the label, is that right? because I solved the problem by applying a change to the resource putting the
"matchExpressions": [
{
"key": "admission.gatekeeper.sh/ignore",
"operator": "DoesNotExist"
in the resource
The text was updated successfully, but these errors were encountered:
Sign up for freeto subscribe to this conversation on GitHub.
Already have an account?
Sign in.
Hey,
after installing gatekeeper operator on openshift cluster it gives an error in operator do network
oc describe co network
Message: Error while updating operator configuration: could not apply (/v1, Kind=Namespace) /openshift-multus: could not update object (/v1, Kind=Namespace) /openshift-multus: admission webhook "check-ignore-label.gatekeeper.sh" denied the request: Only exempt namespace can have the admission.gatekeeper.sh/ignore label
I noticed that the ValidatingWebhookConfiguration/gatekeeper-validating-webhook-configuration feature doesn't have matchExpressions to ignore the label, is that right? because I solved the problem by applying a change to the resource putting the
"matchExpressions": [
{
"key": "admission.gatekeeper.sh/ignore",
"operator": "DoesNotExist"
in the resource
The text was updated successfully, but these errors were encountered: