0ed380d4aa
- Translate reference/glossary/persistent-volume.md in Korean (#25474) - Update outdated files in the dev-1.20-ko.1 branch (1) (#25576) - Translate blog/dont-panic-kubernetes-and-docker into Korean (#25596) - Update outdated files in the dev-1.20-ko.1 branch(3) (#25728) - Ko: enhance tutorials//cluster-intro translation (#25754) - Fix Outdated files in the dev-1.20-ko.1 branch (2) (#25765) Co-authored-by: seokho-son <shsongist@gmail.com> Co-authored-by: jmyung <jesang.myung@gmail.com> Co-authored-by: Jerry Park <jaehwa@gmail.com> Co-authored-by: santachopa <santachopa@naver.com> Co-authored-by: SEUNGHYUN KO <kosehy@gmail.com> Co-authored-by: June Yi <gochist@gmail.com>
31 lines
574 B
YAML
31 lines
574 B
YAML
# 스테이트풀셋 멤버의 안정적인 DNS 엔트리를 위한 헤드리스 서비스.
|
|
apiVersion: v1
|
|
kind: Service
|
|
metadata:
|
|
name: mysql
|
|
labels:
|
|
app: mysql
|
|
spec:
|
|
ports:
|
|
- name: mysql
|
|
port: 3306
|
|
clusterIP: None
|
|
selector:
|
|
app: mysql
|
|
---
|
|
# 읽기용 MySQL 인스턴스에 연결하기 위한 클라이언트 서비스.
|
|
# 쓰기용은 Primary인 mysql-0.mysql에 대신 연결해야 한다.
|
|
apiVersion: v1
|
|
kind: Service
|
|
metadata:
|
|
name: mysql-read
|
|
labels:
|
|
app: mysql
|
|
spec:
|
|
ports:
|
|
- name: mysql
|
|
port: 3306
|
|
selector:
|
|
app: mysql
|
|
|