오늘도 한 뼘 더
[k8s] Service (서비스) 본문
728x90
반응형
Service (서비스)
- Pod을 연결하고 외부에 노출하는 역할
- docker를 실행시킬 때 port를 설정하는 -p 옵션과 같은 역할
- 여러 개의 Pod에 접근할 때, 요청을 분산하는 로드 밸런서 기능을 수행
[ Service.yaml 예시 ]
apiVersion: v1
kind: Service
metadata:
name: svc-test-service
labels:
app: test-service
spec:
selector:
app: app-test-service
type: NodePort
ports:
- protocol: TCP
port: 80
targetPort: 8000
728x90
반응형
'DevOps & Infra > K8S(Kubernetes)' 카테고리의 다른 글
Comments