Newer
Older
Licensed under the GNU AFFERO GENERAL PUBLIC LICENSE Version 3 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.
*/
package container
import (
corev1 "k8s.io/api/core/v1"
)
type Mutate interface {
// Parameters
GetVolumeMounts() []corev1.VolumeMount
// Runtime
GetContainerName() string
GetContainerImage() string
GetContainerImagePullPolicy() corev1.PullPolicy
GetContainerPorts() []corev1.ContainerPort
GetContainerLivenessProbe() *corev1.Probe
GetContainerReadinessProbe() *corev1.Probe
GetContainerArgs() []string
}
func MutateContainer(r Mutate, obj *corev1.Container) error {
obj.Name = r.GetContainerName()
obj.Image = r.GetContainerImage()
obj.ImagePullPolicy = r.GetContainerImagePullPolicy()
obj.Ports = r.GetContainerPorts()
obj.LivenessProbe = r.GetContainerLivenessProbe()
obj.ReadinessProbe = r.GetContainerReadinessProbe()
obj.Args = r.GetContainerArgs()
obj.VolumeMounts = r.GetVolumeMounts()