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>
17 lines
280 B
YAML
17 lines
280 B
YAML
apiVersion: v1
|
|
kind: ConfigMap
|
|
metadata:
|
|
name: mysql
|
|
labels:
|
|
app: mysql
|
|
data:
|
|
primary.cnf: |
|
|
# Primary에만 이 구성을 적용한다.
|
|
[mysqld]
|
|
log-bin
|
|
replica.cnf: |
|
|
# 레플리카에만 이 구성을 적용한다.
|
|
[mysqld]
|
|
super-read-only
|
|
|