NodePort
port
targetPort
전체 서비스 흐름으로 보면 NodePort --> Port --> targetPort
apiVersion: v1
kind: Service
metadata:
name: helloworld-service
spec:
ports:
- nodePort: 31001
port: 8080
targetPort: 80
protocol: TCP
selector:
app: helloworld
type: NodePort
Worker Node의 IP와 Service에 등록된 NodePort로 접근하면
Service의 targetPort로 Selector에 매핑된 Pod와 연결 후
Pod에 생성된 컨테이너 Port로 다시 연결