
Deployments - Kubernetes
Oct 24, 2025 · A Deployment provides declarative updates for Pods and ReplicaSets. You describe a desired state in a Deployment, and the Deployment Controller changes the actual …
Using kubectl to Create a Deployment - Kubernetes
Jun 25, 2025 · In this module, you'll learn the most common kubectl commands needed to create Deployments that run your applications on a Kubernetes cluster. When you create a …
Run a Stateless Application Using a Deployment - Kubernetes
Aug 24, 2023 · You can run an application by creating a Kubernetes Deployment object, and you can describe a Deployment in a YAML file. For example, this YAML file describes a …
kubectl create deployment - Kubernetes
Sep 4, 2025 · Synopsis Create a deployment with the specified name. kubectl create deployment NAME --image=image -- [COMMAND] [args...]
Kubernetes Documentation
Aug 7, 2025 · Kubernetes is an open source container orchestration engine for automating deployment, scaling, and management of containerized applications. The open source project …
Managing Workloads - Kubernetes
Oct 19, 2025 · This section lists only the most common tools used for managing workloads on Kubernetes. To see a larger list, view Application definition and image build in the CNCF …
Getting started | Kubernetes
Nov 23, 2022 · This section lists the different ways to set up and run Kubernetes. When you install Kubernetes, choose an installation type based on: ease of maintenance, security, control, …
Learn Kubernetes Basics
Apr 19, 2025 · This tutorial provides a walkthrough of the basics of the Kubernetes cluster orchestration system. Each module contains some background information on major …
Define Environment Variables for a Container - Kubernetes
Jun 28, 2025 · This page shows how to define environment variables for a container in a Kubernetes Pod. Before you begin You need to have a Kubernetes cluster, and the kubectl …
Autoscaling Workloads - Kubernetes
Apr 7, 2025 · In Kubernetes, you can scale a workload depending on the current demand of resources. This allows your cluster to react to changes in resource demand more elastically …