| 61 | ) |
| 62 | |
| 63 | type ProfileApplier interface { |
| 64 | // Apply applies the profile to the given container in the pod. |
| 65 | Apply(pod *corev1.Pod, containerName string, target runtime.Object) error |
| 66 | } |
| 67 | |
| 68 | // NewProfileApplier returns a new Options for the given profile name. |
| 69 | func NewProfileApplier(profile string, kflags KeepFlags) (ProfileApplier, error) { |
no outgoing calls
no test coverage detected
searching dependent graphs…