import { type EphemeralContainer } from "https://deno.land/x/kubernetes_apis@v0.5.3/builtin/core@v1/mod.ts";
An EphemeralContainer is a temporary container that you may add 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. The kubelet may evict a Pod if an ephemeral container causes the Pod to exceed its resource allocation.
To add an ephemeral container, use the ephemeralcontainers subresource of an existing Pod. Ephemeral containers may not be removed or restarted.
Properties
optional
env: Array<EnvVar> | nulloptional
envFrom: Array<EnvFromSource> | nulloptional
lifecycle: Lifecycle | nulloptional
livenessProbe: Probe | nulloptional
ports: Array<ContainerPort> | nulloptional
readinessProbe: Probe | nulloptional
resizePolicy: Array<ContainerResizePolicy> | nulloptional
resources: ResourceRequirements | nulloptional
securityContext: SecurityContext | nulloptional
startupProbe: Probe | nulloptional
volumeDevices: Array<VolumeDevice> | nulloptional
volumeMounts: Array<VolumeMount> | null