Mutator is the fuse sidecar mutator for platform-specific mutation logic.
| 30 | |
| 31 | // Mutator is the fuse sidecar mutator for platform-specific mutation logic. |
| 32 | type Mutator interface { |
| 33 | MutateWithRuntimeInfo(pvcName string, runtimeInfo base.RuntimeInfoInterface, nameSuffix string) error |
| 34 | |
| 35 | PostMutate() error |
| 36 | |
| 37 | GetMutatedPodSpecs() *MutatingPodSpecs |
| 38 | } |
| 39 | |
| 40 | type MutatorBuildArgs struct { |
| 41 | Client client.Client |
no outgoing calls
no test coverage detected