Pod
Resource Icon
Resource Overview
A Kubernetes service that is the smallest deployable unit, running one or more containers together.
Associated Resources
Parent Resource
Connected Resources
Resource Setting Values
service_name
: Name of the Pod resourcenamespace
: Namespace where Pod resources will be deployedannotations
: Key-value pairs used to display necessary information in the Kubernetes systemlabels
: User-specified values used to distinguish objectscontainers
: Defines templates for containers belonging to a Pod - Default values can be set and applied, after which detailed settings can be configuredcontainers.name
: Defines the name of the containerimage
: Docker image name to useargs
: Commands to be executed in the containercommand
: Commands to be executed in the containerport
: List of ports to expose in the containerresources
: Specifies the amount of computing resources in the container - Detailed settingsname
: Specify minimum/maximum amount of computing resources -Limits
,requests
cpu
: Specifies the amount of cpu(m)memory
: Specifies the amount of memory(Mi)
probe
: Defines how to diagnose the health of a Pod - Detailed settingsname
: Probe method selection -startup
,liveness
,readiness
http_get_path
: Path to access the HTTP serverhttp_get_port
: Port number to be accessed by the containerhttp_header
: Custom headers to set in the requestinitial_delay_seconds
: Number of seconds after the container starts before the probe startsperiod_seconds
: How often to perform probes (in seconds)
env
: Block of key-value pairs to set in container environment - Detailed settingsname
: Name of the environment variablevalue
: Value for the environment variable
volume_mount
: The pod volume to mount on the container's file system - Detailed settingsname
: Name of the volume mountpath
mount_path
: Path within the container where the volume should be mountedsub_path
: Path within the container where the volume should be mounted
volume
: List of volumes that containers in a pod can mountname
: Volume nametype
: Type of volume to mount -EmptyDir
,ConfigMap
,PersistentVolumeClaim
target_name
: Name of persistent volume claimdefault_mode
: Mode to use for generated files - between 0 and 0777, default is 0644read_only
: If true, mounted read-only, otherwise read/write
image_pull_secrets
: Secret in the same namespace containing the permissions needed to pull the image used by the container