import { type EphemeralContainer } from "https://deno.land/x/kubernetes_apis@v0.3.2/builtin/core@v1/structs.ts";
An EphemeralContainer is a container that may be added temporarily to an existing pod for user-initiated activities such as debugging. Ephemeral containers have no resource or scheduling guarantees, and they will not be restarted when they exit or when a pod is removed or restarted. If an ephemeral container causes a pod to exceed its resource allocation, the pod may be evicted. Ephemeral containers may not be added by directly updating the pod spec. They must be added via the pod's ephemeralcontainers subresource, and they will appear in the pod spec once added. This is an alpha feature enabled by the EphemeralContainers feature flag.
Properties
optional
env: Array<EnvVar> | nulloptional
envFrom: Array<EnvFromSource> | nulloptional
lifecycle: Lifecycle | nulloptional
livenessProbe: Probe | nulloptional
ports: Array<ContainerPort> | nulloptional
readinessProbe: Probe | nulloptional
resources: ResourceRequirements | nulloptional
securityContext: SecurityContext | nulloptional
startupProbe: Probe | nulloptional
volumeDevices: Array<VolumeDevice> | nulloptional
volumeMounts: Array<VolumeMount> | null