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
I am guessing that one of the Kyverno CRDs was too big to fit into kubectl.kubernetes.io/last-applied-configuration annotation that is added by kubectl apply, causing the Application sync to fail, leading to the use of Replace: true. This sync option has the potential to be destructive and might lead to resources having to be recreated, which could cause an outage.
I am guessing that one of the Kyverno CRDs was too big to fit into
kubectl.kubernetes.io/last-applied-configuration
annotation that is added bykubectl apply
, causing the Application sync to fail, leading to the use ofReplace: true
. This sync option has the potential to be destructive and might lead to resources having to be recreated, which could cause an outage.k8s-bootstrapper/bootstrap/templates/application_kyverno.yaml
Line 22 in 9f87f19
There's support for
ServerSideApply
now, which addresses the original issue and removes the potentially destructive syncs. Try using this instead:The text was updated successfully, but these errors were encountered: