StatefulSets StatefulSet is the workload API object used to manage stateful applications. Note: StatefulSets are stable (GA) in 1.9. Manages the deployment and scaling of a set of Pods, and provides guarantees about the ordering and uniqueness of the…
Deployments A Deployment controller provides declarative updates for Pods and ReplicaSets. You describe a desired state in a Deployment object, and the Deployment controller changes the actual state to the desired state at a controlled rate. You ca…
ReplicaSet is the next-generation Replication Controller. The only difference between a ReplicaSet and a Replication Controller right now is the selector support. ReplicaSet supports the new set-based selector requirements as described in the labels…
This page provides an overview of Pod, the smallest deployable object in the Kubernetes object model. Understanding Pods How Pods manage multiple Containers Networking Storage Working with Pods Pods and Controllers Pod Templates Understanding Pods Th…
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…
REF: how-to-generate-client-codes-for-kubernetes-custom-resource-definitions-crd Firstly we need to install golang. 1. the api spec looks like: # Definition --- apiVersion: apiextensions.k8s.io/v1beta1 kind: CustomResourceDefinition metadata: name: h…