[ko] Update outdated files in dev-1.24-ko.1 M139-M162

pull/34059/head
Jihoon Seo 2022-05-31 11:46:21 +09:00
parent 507491e619
commit 7d16911571
23 changed files with 51 additions and 39 deletions

View File

@ -5,7 +5,7 @@ metadata:
spec: spec:
containers: containers:
- name: count - name: count
image: busybox image: busybox:1.28
args: args:
- /bin/sh - /bin/sh
- -c - -c

View File

@ -5,7 +5,7 @@ metadata:
spec: spec:
containers: containers:
- name: count - name: count
image: busybox image: busybox:1.28
args: args:
- /bin/sh - /bin/sh
- -c - -c
@ -22,14 +22,14 @@ spec:
- name: varlog - name: varlog
mountPath: /var/log mountPath: /var/log
- name: count-log-1 - name: count-log-1
image: busybox image: busybox:1.28
args: [/bin/sh, -c, 'tail -n+1 -f /var/log/1.log'] args: [/bin/sh, -c, 'tail -n+1 -F /var/log/1.log']
volumeMounts: volumeMounts:
- name: varlog - name: varlog
mountPath: /var/log mountPath: /var/log
- name: count-log-2 - name: count-log-2
image: busybox image: busybox:1.28
args: [/bin/sh, -c, 'tail -n+1 -f /var/log/2.log'] args: [/bin/sh, -c, 'tail -n+1 -F /var/log/2.log']
volumeMounts: volumeMounts:
- name: varlog - name: varlog
mountPath: /var/log mountPath: /var/log

View File

@ -5,7 +5,7 @@ metadata:
spec: spec:
containers: containers:
- name: count - name: count
image: busybox image: busybox:1.28
args: args:
- /bin/sh - /bin/sh
- -c - -c

View File

@ -5,7 +5,7 @@ metadata:
spec: spec:
containers: containers:
- name: busybox-cnt01 - name: busybox-cnt01
image: busybox image: busybox:1.28
command: ["/bin/sh"] command: ["/bin/sh"]
args: ["-c", "while true; do echo hello from cnt01; sleep 10;done"] args: ["-c", "while true; do echo hello from cnt01; sleep 10;done"]
resources: resources:
@ -16,7 +16,7 @@ spec:
memory: "200Mi" memory: "200Mi"
cpu: "500m" cpu: "500m"
- name: busybox-cnt02 - name: busybox-cnt02
image: busybox image: busybox:1.28
command: ["/bin/sh"] command: ["/bin/sh"]
args: ["-c", "while true; do echo hello from cnt02; sleep 10;done"] args: ["-c", "while true; do echo hello from cnt02; sleep 10;done"]
resources: resources:
@ -24,7 +24,7 @@ spec:
memory: "100Mi" memory: "100Mi"
cpu: "100m" cpu: "100m"
- name: busybox-cnt03 - name: busybox-cnt03
image: busybox image: busybox:1.28
command: ["/bin/sh"] command: ["/bin/sh"]
args: ["-c", "while true; do echo hello from cnt03; sleep 10;done"] args: ["-c", "while true; do echo hello from cnt03; sleep 10;done"]
resources: resources:
@ -32,6 +32,6 @@ spec:
memory: "200Mi" memory: "200Mi"
cpu: "500m" cpu: "500m"
- name: busybox-cnt04 - name: busybox-cnt04
image: busybox image: busybox:1.28
command: ["/bin/sh"] command: ["/bin/sh"]
args: ["-c", "while true; do echo hello from cnt04; sleep 10;done"] args: ["-c", "while true; do echo hello from cnt04; sleep 10;done"]

View File

@ -5,7 +5,7 @@ metadata:
spec: spec:
containers: containers:
- name: busybox-cnt01 - name: busybox-cnt01
image: busybox image: busybox:1.28
command: ["/bin/sh"] command: ["/bin/sh"]
args: ["-c", "while true; do echo hello from cnt01; sleep 10;done"] args: ["-c", "while true; do echo hello from cnt01; sleep 10;done"]
resources: resources:
@ -16,7 +16,7 @@ spec:
memory: "200Mi" memory: "200Mi"
cpu: "500m" cpu: "500m"
- name: busybox-cnt02 - name: busybox-cnt02
image: busybox image: busybox:1.28
command: ["/bin/sh"] command: ["/bin/sh"]
args: ["-c", "while true; do echo hello from cnt02; sleep 10;done"] args: ["-c", "while true; do echo hello from cnt02; sleep 10;done"]
resources: resources:
@ -24,7 +24,7 @@ spec:
memory: "100Mi" memory: "100Mi"
cpu: "100m" cpu: "100m"
- name: busybox-cnt03 - name: busybox-cnt03
image: busybox image: busybox:1.28
command: ["/bin/sh"] command: ["/bin/sh"]
args: ["-c", "while true; do echo hello from cnt03; sleep 10;done"] args: ["-c", "while true; do echo hello from cnt03; sleep 10;done"]
resources: resources:
@ -32,6 +32,6 @@ spec:
memory: "200Mi" memory: "200Mi"
cpu: "500m" cpu: "500m"
- name: busybox-cnt04 - name: busybox-cnt04
image: busybox image: busybox:1.28
command: ["/bin/sh"] command: ["/bin/sh"]
args: ["-c", "while true; do echo hello from cnt04; sleep 10;done"] args: ["-c", "while true; do echo hello from cnt04; sleep 10;done"]

View File

@ -5,7 +5,7 @@ metadata:
spec: spec:
containers: containers:
- name: busybox-cnt01 - name: busybox-cnt01
image: busybox image: busybox:1.28
resources: resources:
limits: limits:
memory: "300Mi" memory: "300Mi"

View File

@ -10,7 +10,7 @@ spec:
spec: spec:
containers: containers:
- name: hello - name: hello
image: busybox image: busybox:1.28
imagePullPolicy: IfNotPresent imagePullPolicy: IfNotPresent
command: command:
- /bin/sh - /bin/sh

View File

@ -13,6 +13,6 @@ spec:
spec: spec:
containers: containers:
- name: c - name: c
image: busybox image: busybox:1.28
command: ["sh", "-c", "echo Processing item $ITEM && sleep 5"] command: ["sh", "-c", "echo Processing item $ITEM && sleep 5"]
restartPolicy: Never restartPolicy: Never

View File

@ -9,8 +9,10 @@ data:
# Primary에만 이 구성을 적용한다. # Primary에만 이 구성을 적용한다.
[mysqld] [mysqld]
log-bin log-bin
datadir=/var/lib/mysql/mysql
replica.cnf: | replica.cnf: |
# 레플리카에만 이 구성을 적용한다. # 레플리카에만 이 구성을 적용한다.
[mysqld] [mysqld]
super-read-only super-read-only
datadir=/var/lib/mysql/mysql

View File

@ -27,4 +27,3 @@ spec:
port: 3306 port: 3306
selector: selector:
app: mysql app: mysql

View File

@ -15,8 +15,11 @@ spec:
name: fluentd-elasticsearch name: fluentd-elasticsearch
spec: spec:
tolerations: tolerations:
# this toleration is to have the daemonset runnable on master nodes # 이 톨러레이션(toleration)은 데몬셋이 컨트롤 플레인 노드에서 실행될 수 있도록 만든다.
# remove it if your masters can't run pods # 컨트롤 플레인 노드가 이 파드를 실행해서는 안 되는 경우, 이 톨러레이션을 제거한다.
- key: node-role.kubernetes.io/control-plane
operator: Exists
effect: NoSchedule
- key: node-role.kubernetes.io/master - key: node-role.kubernetes.io/master
operator: Exists operator: Exists
effect: NoSchedule effect: NoSchedule

View File

@ -19,9 +19,13 @@ spec:
name: fluentd-elasticsearch name: fluentd-elasticsearch
spec: spec:
tolerations: tolerations:
# 이 톨러레이션(toleration)은 마스터 노드에서 실행 가능한 데몬셋이 # 이 톨러레이션(toleration)은 데몬셋이 컨트롤 플레인 노드에서 실행될 수 있도록 만든다.
# 마스터에서 파드를 실행할 수 없는 경우 이를 제거하는 것이다 # 컨트롤 플레인 노드가 이 파드를 실행해서는 안 되는 경우, 이 톨러레이션을 제거한다.
- key: node-role.kubernetes.io/control-plane
operator: Exists
effect: NoSchedule
- key: node-role.kubernetes.io/master - key: node-role.kubernetes.io/master
operator: Exists
effect: NoSchedule effect: NoSchedule
containers: containers:
- name: fluentd-elasticsearch - name: fluentd-elasticsearch

View File

@ -19,9 +19,13 @@ spec:
name: fluentd-elasticsearch name: fluentd-elasticsearch
spec: spec:
tolerations: tolerations:
# 이 톨러레이션(toleration)은 마스터 노드에서 실행 가능한 데몬셋이 # 이 톨러레이션(toleration)은 데몬셋이 컨트롤 플레인 노드에서 실행될 수 있도록 만든다.
# 마스터에서 파드를 실행할 수 없는 경우 이를 제거하는 것이다 # 컨트롤 플레인 노드가 이 파드를 실행해서는 안 되는 경우, 이 톨러레이션을 제거한다.
- key: node-role.kubernetes.io/control-plane
operator: Exists
effect: NoSchedule
- key: node-role.kubernetes.io/master - key: node-role.kubernetes.io/master
operator: Exists
effect: NoSchedule effect: NoSchedule
containers: containers:
- name: fluentd-elasticsearch - name: fluentd-elasticsearch

View File

@ -5,6 +5,6 @@ metadata:
spec: spec:
containers: containers:
- name: count - name: count
image: busybox image: busybox:1.28
args: [/bin/sh, -c, args: [/bin/sh, -c,
'i=0; while true; do echo "$i: $(date)"; i=$((i+1)); sleep 1; done'] 'i=0; while true; do echo "$i: $(date)"; i=$((i+1)); sleep 1; done']

View File

@ -14,7 +14,7 @@ spec:
# 이 컨테이너들은 파드 초기화 중에 실행된다. # 이 컨테이너들은 파드 초기화 중에 실행된다.
initContainers: initContainers:
- name: install - name: install
image: busybox image: busybox:1.28
command: command:
- wget - wget
- "-O" - "-O"

View File

@ -10,7 +10,7 @@ spec:
command: command:
- sh - sh
- -c - -c
image: busybox image: busybox:1.28
env: env:
- name: SERVICE_PORT - name: SERVICE_PORT
value: "80" value: "80"

View File

@ -8,11 +8,10 @@ spec:
requiredDuringSchedulingIgnoredDuringExecution: requiredDuringSchedulingIgnoredDuringExecution:
nodeSelectorTerms: nodeSelectorTerms:
- matchExpressions: - matchExpressions:
- key: kubernetes.io/e2e-az-name - key: kubernetes.io/os
operator: In operator: In
values: values:
- e2e-az1 - linux
- e2e-az2
preferredDuringSchedulingIgnoredDuringExecution: preferredDuringSchedulingIgnoredDuringExecution:
- weight: 1 - weight: 1
preference: preference:

View File

@ -8,9 +8,9 @@ spec:
- name: memory-demo-3-ctr - name: memory-demo-3-ctr
image: polinux/stress image: polinux/stress
resources: resources:
limits:
memory: "1000Gi"
requests: requests:
memory: "1000Gi" memory: "1000Gi"
limits:
memory: "1000Gi"
command: ["stress"] command: ["stress"]
args: ["--vm", "1", "--vm-bytes", "150M", "--vm-hang", "1"] args: ["--vm", "1", "--vm-bytes", "150M", "--vm-hang", "1"]

View File

@ -8,9 +8,9 @@ spec:
- name: memory-demo-ctr - name: memory-demo-ctr
image: polinux/stress image: polinux/stress
resources: resources:
limits:
memory: "200Mi"
requests: requests:
memory: "100Mi" memory: "100Mi"
limits:
memory: "200Mi"
command: ["stress"] command: ["stress"]
args: ["--vm", "1", "--vm-bytes", "150M", "--vm-hang", "1"] args: ["--vm", "1", "--vm-bytes", "150M", "--vm-hang", "1"]

View File

@ -9,5 +9,5 @@ metadata:
spec: spec:
containers: containers:
- name: hello - name: hello
image: busybox image: busybox:1.28
command: [ "sh", "-c", "echo 'Hello AppArmor!' && sleep 1h" ] command: [ "sh", "-c", "echo 'Hello AppArmor!' && sleep 1h" ]

View File

@ -3,6 +3,7 @@ kind: PodSecurityPolicy
metadata: metadata:
name: restricted name: restricted
annotations: annotations:
# docker/default 는 seccomp를 위한 프로파일을 나타내지만, 특별히 도커 런타임에 묶여 있는 것은 아니다.
seccomp.security.alpha.kubernetes.io/allowedProfileNames: 'docker/default,runtime/default' seccomp.security.alpha.kubernetes.io/allowedProfileNames: 'docker/default,runtime/default'
apparmor.security.beta.kubernetes.io/allowedProfileNames: 'runtime/default' apparmor.security.beta.kubernetes.io/allowedProfileNames: 'runtime/default'
apparmor.security.beta.kubernetes.io/defaultProfileName: 'runtime/default' apparmor.security.beta.kubernetes.io/defaultProfileName: 'runtime/default'

View File

@ -15,7 +15,7 @@ spec:
- "bar.remote" - "bar.remote"
containers: containers:
- name: cat-hosts - name: cat-hosts
image: busybox image: busybox:1.28
command: command:
- cat - cat
args: args:

View File

@ -7,7 +7,7 @@ type: docs
<!-- overview --> <!-- overview -->
쿠버네티스 프로젝트는 가장 최신의 3개 마이너(minor) 릴리스({{< skew latestVersion >}}, {{< skew prevMinorVersion >}}, {{< skew oldestMinorVersion >}})에 대해서 릴리스 브랜치를 관리한다. 쿠버네티스 1.19 및 이후 신규 버전은 약 1년간 패치 지원을 받을 수 있다. 쿠버네티스 1.18 및 이전 버전은 약 9개월간의 패치 지원을 받을 수 있다. 쿠버네티스 프로젝트는 가장 최신의 3개 마이너(minor) 릴리스({{< skew latestVersion >}}, {{< skew prevMinorVersion >}}, {{< skew oldestMinorVersion >}})에 대해서 릴리스 브랜치를 관리한다. 쿠버네티스 1.19 및 이후 신규 버전은 [약 1년간 패치 지원](/releases/patch-releases/#support-period)을 받을 수 있다. 쿠버네티스 1.18 및 이전 버전은 약 9개월간의 패치 지원을 받을 수 있다.
쿠버네티스 버전은 **x.y.z** 의 형태로 표현되는데, 쿠버네티스 버전은 **x.y.z** 의 형태로 표현되는데,
**x** 는 메이저(major) 버전, **y** 는 마이너(minor), **z** 는 패치(patch) 버전을 의미하며, 이는 [시맨틱 버전](https://semver.org/)의 용어를 따른 것이다. **x** 는 메이저(major) 버전, **y** 는 마이너(minor), **z** 는 패치(patch) 버전을 의미하며, 이는 [시맨틱 버전](https://semver.org/)의 용어를 따른 것이다.