Skip to content
mutate.go 1.54 KiB
Newer Older
Timothee Gosselin's avatar
Timothee Gosselin committed
/*

Timothee Gosselin's avatar
Timothee Gosselin committed
Licensed under the GNU AFFERO GENERAL PUBLIC LICENSE Version 3 (the "License");
Timothee Gosselin's avatar
Timothee Gosselin committed
you may not use this file except in compliance with the License.
You may obtain a copy of the License at

Timothee Gosselin's avatar
Timothee Gosselin committed
    https://www.gnu.org/licenses/agpl-3.0.html
Timothee Gosselin's avatar
Timothee Gosselin committed

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
Timothee Gosselin's avatar
Timothee Gosselin committed
	GetEnvFrom() []corev1.EnvFromSource
Timothee Gosselin's avatar
Timothee Gosselin committed
	GetEnvVar() []corev1.EnvVar
Timothee Gosselin's avatar
Timothee Gosselin committed
	// Runtime
	GetContainerName() string
	GetContainerImage() string
	GetContainerImagePullPolicy() corev1.PullPolicy
	GetContainerPorts() []corev1.ContainerPort
	GetContainerLivenessProbe() *corev1.Probe
	GetContainerReadinessProbe() *corev1.Probe
	GetContainerArgs() []string
Timothee Gosselin's avatar
Timothee Gosselin committed
	GetContainerCommand() []string
Timothee Gosselin's avatar
Timothee Gosselin committed
}

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.Command = r.GetContainerCommand()
Timothee Gosselin's avatar
Timothee Gosselin committed

	obj.EnvFrom = r.GetEnvFrom()
Timothee Gosselin's avatar
Timothee Gosselin committed
	obj.Env = r.GetEnvVar()
Timothee Gosselin's avatar
Timothee Gosselin committed

	obj.VolumeMounts = r.GetVolumeMounts()
Timothee Gosselin's avatar
Timothee Gosselin committed

	return nil
}