Concepts The Concepts section helps you learn about the parts of the Kubernetes system and the abstractions Kubernetes uses to represent your cluster, and helps you obtain a deeper understanding of how Kubernetes works. Overview To work with Kubernet…
Pods are the smallest deployable units of computing that can be created and managed in Kubernetes. What is a Pod? A pod (as in a pod of whales or pea pod) is a group of one or more containers (such as Docker containers), with shared storage/network,…
Pod Lifecycle This page describes the lifecycle of a Pod. Pod phase A Pod’s status field is a PodStatus object, which has a phase field. The phase of a Pod is a simple, high-level summary of where the Pod is in its lifecycle. The phase is not intende…
Edit This Page ReplicationController NOTE: A Deployment that configures a ReplicaSet is now the recommended way to set up replication. 注意:更加推荐使用ReplicaSet部署集群. A ReplicationController ensures that a specified number of pod replicas are running at any…
This page provides an overview of Pod, the smallest deployable object in the Kubernetes object model. Pod是Kubernetes 对象模型中最小的可部署对象. Understanding Pods A Pod is the basic building block of Kubernetes–the smallest and simplest unit in the Kubernetes ob…
Today, we are excited to announce the public preview of Azure Dev Spaces, a cloud-native development experience for Azure Kubernetes Service (AKS), where you can work on your applications while always staying connected with the cloud and your team. O…