- Kubernetes consists of Master and Worker Nodes.
- Master node contains API Server, Cluster Storage, Controller manager and schedulers.
- The worker node contains kube-proxy, container engine and Kubelet.
- Pods are the place where the one or more than one container is running.
- To access the containers running inside the pods we need to access the pod IP.
- If more than one container is running inside a pod is called tight coupling and if one container is running inside one pod is called loose coupling.
- The best practice is to run one container inside one pod for unique port number.
- The Pod is something which only holds the container in it,if a container stops the pod will not start.
- We can use YML configuration files to create a pod.
- Pod holds the configuration information that determine how a container should run.
For further actions, you may consider blocking this person and/or reporting abuse
Top comments (0)