Container
A lightweight package that bundles an app with everything it needs so it runs the same way anywhere.
Container Orchestration
DevOps glossary terms in Container Orchestration.
A lightweight package that bundles an app with everything it needs so it runs the same way anywhere.
Container Orchestration
A Kubernetes API extension that lets you define new resource types so you can manage your own custom components like built-in Kubernetes objects.
Container Orchestration
Kubernetes-native controllers that run an app for you by automating deploys, configuration, and ongoing operations using custom resources.
Container Orchestration
Rook orchestrates persistent storage on Kubernetes, automating deployment and operations for stateful container workloads.
Container Orchestration
KRO orchestrates related Kubernetes resources as one unit using templates and rules to standardize platform deployments.
Container Orchestration
Open source container orchestration platform that deploys, scales, and manages containerized applications across clusters.
Container Orchestration
Kubernetes package manager that packages manifests into versioned charts for consistent installs, upgrades, and configuration.
Container Orchestration
Kubernetes Admission Controller checks API calls to allow, change, or deny cluster changes before saving them.
Container Orchestration
A Kubernetes Service is a stable network endpoint that exposes pods and routes traffic within or outside a cluster.
Container Orchestration
Kubernetes NetworkPolicy sets rules for pod traffic in a cluster, controlling which pods can connect to other pods.
Container Orchestration
A Pod Disruption Budget (PDB) is a Kubernetes policy limiting voluntary pod evictions to keep replicas available.
Container Orchestration
Horizontal Pod Autoscaler (HPA) is a Kubernetes controller that scales pod replicas using CPU or custom metrics.
Container Orchestration
Kubernetes StatefulSet is a workload API object for stateful pods, giving each pod stable identity and storage.
Container Orchestration
A Kubernetes Operator is a controller that automates app lifecycle management in a cluster using custom resources.
Container Orchestration
Kubernetes DaemonSet is a workload API object that runs one pod on each selected node for cluster-wide node agents.
Container Orchestration
A Kubernetes Deployment is a workload API object that manages replicated pods and rolling updates in a cluster.
Container Orchestration
A Helm Chart is a package of Kubernetes manifests and templates used to install and manage an app in a cluster.
Container Orchestration
A Kubernetes ConfigMap is an API object storing non-sensitive configuration for pods, separate from container images.
Container Orchestration
A Kubernetes PV is a cluster storage resource that lets pods keep data beyond restarts through bound claims.
Container Orchestration
A Kubernetes Pod is the smallest deployable cluster unit, running one or more containers that share a network.
Container Orchestration
A PersistentVolumeClaim (PVC) is a storage request that binds a pod to a PersistentVolume for durable data.
Container Orchestration
A Kubernetes CronJob creates Jobs on a schedule to automate recurring tasks inside a cluster, like backups or cleanup.
Container Orchestration
A Kubernetes Job runs one or more pods to completion for finite tasks, such as batch processing inside a cluster.
Container Orchestration
A Kubernetes liveness probe checks whether a container is alive and restarts it when the app stops responding.
Container Orchestration
A Kubernetes readiness probe checks whether a pod is ready for traffic before adding it to Service endpoints.
Container Orchestration
A Kubernetes init container runs before app containers in a pod to prepare dependencies, config, or setup tasks.
Container Orchestration
A Kubernetes Node is a worker machine in a cluster that runs pods and provides CPU, memory, and networking for workloads.
Container Orchestration
A Kubernetes Namespace is a logical partition in a cluster used to group resources and scope access, policies, or quotas.
Container Orchestration
A Kubernetes ReplicaSet keeps a set number of matching pods running in a cluster, replacing failed ones as needed.
Container Orchestration
Kubernetes taints and tolerations control scheduling by marking nodes and allowing only matching pods to run there.
Container Orchestration
Kubernetes resource requests and limits set pod CPU and memory needs and caps, guiding scheduling and capping use.
Container Orchestration
Kubernetes StorageClass defines volume provisioning settings for PVCs, letting teams request storage by class.
Container Orchestration
Kubernetes CRD extends the Kubernetes API with custom resource types, letting teams manage cluster or app state declaratively.
Container Orchestration
Kubernetes EndpointSlice groups Service endpoints into slices so controllers and proxies can route traffic to pods.
Container Orchestration
Kubernetes Volume is a storage resource attached to a pod, used to persist or share data across containers.
Container Orchestration
Kubernetes ResourceQuota is a namespace limit for CPU, memory, storage, and objects that controls cluster use.
Container Orchestration
Kubernetes PodDisruptionBudget (PDB) limits voluntary pod evictions so a minimum number or percentage stays available.
Container Orchestration
Kubernetes HPA automatically scales pod replicas based on metrics like CPU to match application demand.
Container Orchestration
Kubernetes VerticalPodAutoscaler (VPA) adjusts pod CPU and memory requests based on workload usage for better scheduling.
Container Orchestration
Kubernetes LimitRange is a namespace policy setting CPU and memory requests or limits for pods at admission time.
Container Orchestration
Kubernetes PriorityClass sets pod priority, allowing critical workloads to preempt lower-priority pods when cluster resources are scarce.
Container Orchestration
Kubernetes Pod Affinity and Anti-Affinity are scheduling rules that place pods together or apart using labels and topology.
Container Orchestration
Kubernetes Pod Topology Spread Constraints are scheduler rules that spread pods across zones or nodes to cut skew.
Container Orchestration
Kubernetes ValidatingAdmissionPolicy validates API requests with CEL rules before storage as admission control.
Container Orchestration
Kubernetes MutatingAdmissionWebhook is a webhook that edits API requests before storage to set defaults or labels.
Container Orchestration
Kubernetes ValidatingAdmissionWebhook is an admission webhook that accepts or rejects API requests before storage.
Container Orchestration
Kubernetes labels are key-value tags on objects, and selectors match them to group Pods for services or controllers.
Container Orchestration
A Kubernetes CustomResourceDefinition (CRD) adds a custom API resource type to a cluster for domain-specific objects.
Container Orchestration
A Kubernetes VolumeSnapshot captures a point-in-time PVC copy for backup, restore, or storage cloning workflows.
Container Orchestration
Kubernetes IngressClass links an Ingress to the controller that routes outside traffic for cluster services.
Container Orchestration