ClientUpdateOptionThreeWayMergeForUnstructured enables performing three-way merge for unstructured objects Must not be enabled when ClientUpdateOptionServerSideApply is enabled
(threeWayMergeForUnstructured bool)
| 711 | // ClientUpdateOptionThreeWayMergeForUnstructured enables performing three-way merge for unstructured objects |
| 712 | // Must not be enabled when ClientUpdateOptionServerSideApply is enabled |
| 713 | func ClientUpdateOptionThreeWayMergeForUnstructured(threeWayMergeForUnstructured bool) ClientUpdateOption { |
| 714 | return func(o *clientUpdateOptions) error { |
| 715 | o.threeWayMergeForUnstructured = threeWayMergeForUnstructured |
| 716 | |
| 717 | return nil |
| 718 | } |
| 719 | } |
| 720 | |
| 721 | // ClientUpdateOptionServerSideApply enables performing object apply server-side (default) |
| 722 | // see: https://kubernetes.io/docs/reference/using-api/server-side-apply/ |
no outgoing calls
searching dependent graphs…