Kubernetes/이론
[Kubernetes] Pod
목적 Pod에 대해 알고자 함 목차 Pod란? Pod 생성 양식 1. Pod란? 쿠버네티스에서 가장 작은 실행 단위이다. Pod 내부에는 컨테이너들이 존재하며, Pod는 컨테이너들을 관리해준다. Pod는 컨테이너들 간에 동일한 포트를 사용할 수 없으며, 같은 Pod 내부의 컨테이너들 간에는 localhost로 통신이 가능하다. 2. Pod 생성 양식 apiVersion: v1 kind: Pod metadata: name: sample-pod spec: containers: - name: container1 image: sample/springboot ports: - containerPort: 8000 - name: container2 image: sample/mysql ports: - containerP..