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
5 changes: 5 additions & 0 deletions pkg/kustomize/apply.go
Original file line number Diff line number Diff line change
Expand Up @@ -125,6 +125,11 @@ func applyKustomization(kustomization string, kubeconfig string) error {
return err
}

// Enable server-side apply to ensure big resources are applied successfully.
o.ServerSideApply = true
// Force conflicts to ensure that resources are applied even if they have changed on kube.
o.ForceConflicts = true

if err := o.Validate(); err != nil {
return err
}
Expand Down