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 |
Tags
- GNOME
- rsyslog
- syslog
- CentOS
- K8S
- 크롬
- JSON
- centos 7.5
- Audit Log
- docker
- 서울시민카드
- Python
- 파이썬
- Chrome
- RHEL
- bash
- Kubernetes
- Elasticsearch
- Shell
- zabbix
- PostgreSQL
- Linux
- log
- 빅데이터
- GPU
- yum
- C
- 디렉토리
- audit
- Elk
Archives
- Today
- Total
Sysops Notepad
[kubernetes] Service Type 본문
728x90
k8s Service Type
ClusterIP
디폴트 설정으로, 서비스에 클러스터 IP를 할당
Load Balancer
외부 IP 를 가지고 있는 로드밸런서를 할당
클러스터 외부에서 접근이 가능
NodePort
노드의 IP와 포트를 통해서도 접근이 가능
type: NodePort
ports:
- name: http
port: 80
protocol: TCP
targetPort: 8080
nodePort: 18080
Client -> 80 service -> 8080 pod
Client -> 18080 node
ExternalName
외부 서비스를 쿠버네티스 내부에서 호출 ( dns forwarding)
type: ExternalName
externalName: test.example.com
Endpoint 지정
apiVersion: v1
kind: Endpoints
metadata:
name: nginx
subsets:
- addresses
- ip: 172.31.0.10
ports:
- port: 80
728x90
'업무 > etc' 카테고리의 다른 글
[ELK] xpack basic license 등록 (0) | 2018.12.19 |
---|---|
[kubernetes] HA 메모 (0) | 2018.12.10 |
L4 Load Balancing Mode (0) | 2018.12.03 |
[Linux] harbor install (0) | 2018.11.30 |
rancher , k8s 메모 (0) | 2018.11.30 |
Comments