# Functions
Apply returns a function which applies a series of Modification functions to a *corev1.Container.
DefaultSecurityContext returns the default container security context with: - readOnlyRootFilesystem set to true.
GetByName returns a container with the given name from the slice of containers.
New returns a concrete corev1.Container instance which has been modified based on the provided modifications.
NOOP is a valid Modification which applies no changes.
No description provided by the author
WithArgs sets the containers Args.
WithCommand sets the containers Command.
WithEnvs ensures all of the provided envs exist in the container.
WithImage sets the container image.
WithImagePullPolicy sets the container pullPolicy.
WithLifecycle applies the lifecycle Modification to this container's Lifecycle.
WithLivenessProbe modifies the container's Liveness Probe.
WithName sets the container name.
WithPorts sets the container's Ports.
WithReadinessProbe modifies the container's Readiness Probe.
WithResourceRequirements sets the container's Resources.
WithSecurityContext sets the container's SecurityContext.
WithStartupProbe modifies the container's Startup Probe.
WithPWithVolumeDevice sets the container's VolumeDevices.
WithVolumeMounts sets the VolumeMounts.
WithWorkDir sets the container Working Directory.
# Type aliases
No description provided by the author