()
| 7 | ) |
| 8 | |
| 9 | func DefaultCreateOptions() metav1.CreateOptions { |
| 10 | opts := metav1.CreateOptions{} |
| 11 | |
| 12 | if app.KubeClientFieldManager != "" { |
| 13 | opts.FieldManager = app.KubeClientFieldManager |
| 14 | } |
| 15 | |
| 16 | return opts |
| 17 | } |
| 18 | |
| 19 | func DefaultUpdateOptions() metav1.UpdateOptions { |
| 20 | opts := metav1.UpdateOptions{} |
no outgoing calls