Skip to content

Commit

Permalink
'M118-M125'
Browse files Browse the repository at this point in the history
  • Loading branch information
Veryfirstmoment committed Jul 13, 2022
1 parent 4fb172b commit 1fde7d1
Show file tree
Hide file tree
Showing 8 changed files with 16 additions and 12 deletions.
7 changes: 3 additions & 4 deletions content/ko/examples/application/mysql/mysql-configmap.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -4,15 +4,14 @@ metadata:
name: mysql
labels:
app: mysql
app.kubernetes.io/name: mysql
data:
primary.cnf: |
# Primary에만 이 구성을 적용한다.
[mysqld]
log-bin
datadir=/var/lib/mysql/mysql
log-bin
replica.cnf: |
# 레플리카에만 이 구성을 적용한다.
[mysqld]
super-read-only
datadir=/var/lib/mysql/mysql
super-read-only
3 changes: 3 additions & 0 deletions content/ko/examples/application/mysql/mysql-services.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@ metadata:
name: mysql
labels:
app: mysql
app.kubernetes.io/name: mysql
spec:
ports:
- name: mysql
Expand All @@ -21,6 +22,8 @@ metadata:
name: mysql-read
labels:
app: mysql
app.kubernetes.io/name: mysql
readonly: "true"
spec:
ports:
- name: mysql
Expand Down
2 changes: 2 additions & 0 deletions content/ko/examples/application/mysql/mysql-statefulset.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -6,12 +6,14 @@ spec:
selector:
matchLabels:
app: mysql
app.kubernetes.io/name: mysql
serviceName: mysql
replicas: 3
template:
metadata:
labels:
app: mysql
app.kubernetes.io/name: mysql
spec:
initContainers:
- name: init-mysql
Expand Down
2 changes: 1 addition & 1 deletion content/ko/examples/controllers/job.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ spec:
spec:
containers:
- name: pi
image: perl
image: perl:5.34
command: ["perl", "-Mbignum=bpi", "-wle", "print bpi(2000)"]
restartPolicy: Never
backoffLimit: 4
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -30,4 +30,4 @@ spec:
- key-2
containers:
- name: with-node-affinity
image: k8s.gcr.io/pause:2.0
image: k8s.gcr.io/pause:2.0
2 changes: 1 addition & 1 deletion content/ko/includes/task-tutorial-prereqs.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,4 +5,4 @@
다음의 쿠버네티스 플레이그라운드 중 하나를 사용할 수 있다.

* [Killercoda](https://killercoda.com/playgrounds/scenario/kubernetes)
* [Play with Kubernetes](https://labs.play-with-k8s.com/)
* [Play with Kubernetes](https://labs.play-with-k8s.com/)
4 changes: 2 additions & 2 deletions content/ko/releases/_index.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ type: docs

<!-- overview -->

쿠버네티스 프로젝트는 가장 최신의 3개 마이너(minor) 릴리스({{< skew latestVersion >}}, {{< skew prevMinorVersion >}}, {{< skew oldestMinorVersion >}})에 대해서 릴리스 브랜치를 관리한다. 쿠버네티스 1.19 및 이후 신규 버전은 [약 1년간 패치 지원](/releases/patch-releases/#support-period)을 받을 수 있다. 쿠버네티스 1.18 및 이전 버전은 약 9개월간의 패치 지원을 받을 수 있다.
쿠버네티스 프로젝트는 가장 최신의 3개 마이너(minor) 릴리스({{< skew currentVersion >}}, {{< skew currentVersionAddMinor -1 >}}, {{< skew currentVersionAddMinor -2 >}})에 대해서 릴리스 브랜치를 관리한다. 쿠버네티스 1.19 및 이후 신규 버전은 [약 1년간 패치 지원](/releases/patch-releases/#support-period)을 받을 수 있다. 쿠버네티스 1.18 및 이전 버전은 약 9개월간의 패치 지원을 받을 수 있다.

쿠버네티스 버전은 **x.y.z** 의 형태로 표현되는데,
**x** 는 메이저(major) 버전, **y** 는 마이너(minor), **z** 는 패치(patch) 버전을 의미하며, 이는 [시맨틱 버전](https://semver.org/)의 용어를 따른 것이다.
Expand All @@ -22,6 +22,6 @@ type: docs

## 차기 릴리스

차기 쿠버네티스 릴리스 **{{< skew nextMinorVersion >}}** 일정은 [스케줄](https://github.com/kubernetes/sig-release/tree/master/releases/release-{{< skew nextMinorVersion >}})에서 확인할 수 있다.
차기 쿠버네티스 릴리스 **{{< skew currentVersionAddMinor 1 >}}** 일정은 [스케줄](https://github.com/kubernetes/sig-release/tree/master/releases/release-{{< skew currentVersionAddMinor 1 >}})에서 확인할 수 있다.

## 유용한 자원
6 changes: 3 additions & 3 deletions content/ko/releases/version-skew-policy.md
Original file line number Diff line number Diff line change
Expand Up @@ -21,12 +21,12 @@ description: >
## 지원되는 버전

쿠버네티스 버전은 **x.y.z** 로 표현되는데, 여기서 **x** 는 메이저 버전, **y** 는 마이너 버전, **z** 는 패치 버전을 의미하며, 이는 [시맨틱 버전](https://semver.org/) 용어에 따른 것이다.
자세한 내용은 [쿠버네티스 릴리스 버전](https://github.com/kubernetes/community/blob/master/contributors/design-proposals/release/versioning.md#kubernetes-release-versioning)을 참조한다.
자세한 내용은 [쿠버네티스 릴리스 버전](https://git.k8s.io/design-proposals-archive/release/versioning.md#kubernetes-release-versioning)을 참조한다.

쿠버네티스 프로젝트는 최근 세 개의 마이너 릴리스 ({{< skew latestVersion >}}, {{< skew prevMinorVersion >}}, {{< skew oldestMinorVersion >}}) 에 대한 릴리스 분기를 유지한다. 쿠버네티스 1.19 이상은 약 1년간의 패치 지원을 받는다. 쿠버네티스 1.18 이상은 약 9개월의 패치 지원을 받는다.
쿠버네티스 프로젝트는 최근 세 개의 마이너 릴리스 ({{< skew currentVersion >}}, {{< skew currentVersionAddMinor -1 >}}, {{< skew currentVersionAddMinor -2 >}}) 에 대한 릴리스 분기를 유지한다. 쿠버네티스 1.19 이상은 약 1년간의 패치 지원을 받는다. 쿠버네티스 1.18 이상은 약 9개월의 패치 지원을 받는다.

보안 수정사항을 포함한 해당 수정사항은 심각도와 타당성에 따라 세 개의 릴리스 브랜치로 백포트(backport) 될 수 있다.
패치 릴리스는 각 브랜치별로 [정기적인 주기](https://git.k8s.io/sig-release/releases/patch-releases.md#cadence)로 제공하며, 필요한 경우 추가 긴급 릴리스도 추가한다.
패치 릴리스는 각 브랜치별로 [정기적인 주기](/releases/patch-releases/#cadence)로 제공하며, 필요한 경우 추가 긴급 릴리스도 추가한다.

[릴리스 관리자](/releases/release-managers/) 그룹이 이러한 결정 권한을 가진다.

Expand Down

0 comments on commit 1fde7d1

Please sign in to comment.