Vijay Kubernetes Learnings
What is POD – in 10 lines with 1 YAML example Ans: Pod is a group of one or more Containers, A atom inside the container which manages the IP & Port configurations. below are the list of commands for Pod kubectl get pods kubectl create -f pod1.yaml -n=vijay kubectl apply -f pod1.yaml -n=vijay kubectl get pods -n=vijay kubectl get pods -n=vijay-o wide –show-labels kubectl delete -f pod1.yaml -n=vijay What is ReplicationController – in 4 lines with 1 YAML example Ans:
Read more