Skip to content

Latest commit

 

History

History
29 lines (20 loc) · 641 Bytes

File metadata and controls

29 lines (20 loc) · 641 Bytes

Kubernetes Commands

Kubernetes is an open source container orchestration engine for automating deployment, scaling, and management of containerized applications.

POD

pod

kubectl

kubectl cluster-info
kubectl create namespace
kubectl run nginx --image nginx
kubectl get pods
kubectl get nodes

Key Concepts

  • Node: Is a worker machine
  • Kubelet: Agent that run's on the server or worker nodes
  • kubectl: Kube control tool
  • Pod: Its a single instance of an application

Links: