로딩
티스토리 데이터 처리 중입니다.

[Cloud] 6. Kubernetes Service deploy

 [Cloud] 6. Kubernetes Service deploy

Another object deployed in Kubernetes is an object called Service. The role of this Service object is like a kind of Gateway.

As mentioned earlier, the application actually runs in a container, and the object containing this container is a Pod. This Pod has an IP individually.

The problem is that if the IP of the Pod is exposed to an external client, the IP will be changed when a new Pod is crea.....