Skip to content

Latest commit

 

History

History
32 lines (18 loc) · 684 Bytes

README.md

File metadata and controls

32 lines (18 loc) · 684 Bytes

k8s-fundamentals

k8s-scheme

Tools

Create cluster with kind

kind create cluster --name=esquenta

kubectl cluster-info --context kind-esquenta

kubectl get nodes

Create Pod

kubectl apply -f pod.yaml

kubectl get pods

kubectl port-forward pod/nginx-demo 9090:80

Create ReplicaSet

kubectl apply -f replicaset.yaml

Create Deployment

kubectl apply -f deployment.yaml