Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | 4 | |||
5 | 6 | 7 | 8 | 9 | 10 | 11 |
12 | 13 | 14 | 15 | 16 | 17 | 18 |
19 | 20 | 21 | 22 | 23 | 24 | 25 |
26 | 27 | 28 | 29 | 30 | 31 |
Tags
- 리뷰
- 스마트 컨트랙트
- 이더리움
- Linux
- 블록체인
- 암호화폐
- PC
- 주식
- threejs
- 게임
- game
- 스마트 계약
- 시장
- Three
- 비트코인
- 거래
- 보안
- 탈중앙화
- 젤다 왕눈
- 쿠버네티스
- 투자
- Docker
- review
- strongloop
- kubernetes
- Games
- ps4
- 부동산
- angular
- loopback
Archives
- Today
- Total
BaeBox
Port, targetPort, containerPort, nodePort, servicePort 본문
반응형
Port: Port is the port number which makes a service visible to other services running within the same K8s cluster. In other words, in case a service wants to invoke another service running within the same Kubernetes cluster, it will be able to do so using port specified against “port” in the service spec file.
Target Port: Target port is the port on the POD where the service is running.
Nodeport: Node port is the port on which the service can be accessed from external users using Kube-Proxy. Take a look at following spec defining a sample service:
Port : 같은 kubernetes cluster 내에서 접근 가능한 포트
containerPort : 컨테이너가 개방하는 포트
targetport : pod 기준으로 열린 포트
Nodeport: 외부에서 직접적으로 접근 가능한 포트
ServicePort: ingress 에서 연결해주는 포트. 얘가 연결해주는 포트가 endpoint 의 포트가 됨.
반응형
'개발 관련' 카테고리의 다른 글
Service (0) | 2019.11.02 |
---|---|
Kubernetes Architecture (0) | 2019.11.02 |
Deployment (배포) (0) | 2019.11.02 |
Pod (포드) (0) | 2019.11.02 |
local registry (0) | 2019.11.02 |
Comments