Skip to content

Commit 4602561

Browse files
authored
Merge pull request #34059 from jihoon-seo/220531_ko_Update_outdated_dev-1.24-ko.1_M139
[ko] Update outdated files in `dev-1.24-ko.1` (M139-M162)
2 parents 414ea62 + 7d16911 commit 4602561

23 files changed

+51
-39
lines changed

content/ko/examples/admin/logging/two-files-counter-pod-agent-sidecar.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ metadata:
55
spec:
66
containers:
77
- name: count
8-
image: busybox
8+
image: busybox:1.28
99
args:
1010
- /bin/sh
1111
- -c

content/ko/examples/admin/logging/two-files-counter-pod-streaming-sidecar.yaml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ metadata:
55
spec:
66
containers:
77
- name: count
8-
image: busybox
8+
image: busybox:1.28
99
args:
1010
- /bin/sh
1111
- -c
@@ -22,14 +22,14 @@ spec:
2222
- name: varlog
2323
mountPath: /var/log
2424
- name: count-log-1
25-
image: busybox
26-
args: [/bin/sh, -c, 'tail -n+1 -f /var/log/1.log']
25+
image: busybox:1.28
26+
args: [/bin/sh, -c, 'tail -n+1 -F /var/log/1.log']
2727
volumeMounts:
2828
- name: varlog
2929
mountPath: /var/log
3030
- name: count-log-2
31-
image: busybox
32-
args: [/bin/sh, -c, 'tail -n+1 -f /var/log/2.log']
31+
image: busybox:1.28
32+
args: [/bin/sh, -c, 'tail -n+1 -F /var/log/2.log']
3333
volumeMounts:
3434
- name: varlog
3535
mountPath: /var/log

content/ko/examples/admin/logging/two-files-counter-pod.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ metadata:
55
spec:
66
containers:
77
- name: count
8-
image: busybox
8+
image: busybox:1.28
99
args:
1010
- /bin/sh
1111
- -c

content/ko/examples/admin/resource/limit-range-pod-1.yaml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ metadata:
55
spec:
66
containers:
77
- name: busybox-cnt01
8-
image: busybox
8+
image: busybox:1.28
99
command: ["/bin/sh"]
1010
args: ["-c", "while true; do echo hello from cnt01; sleep 10;done"]
1111
resources:
@@ -16,22 +16,22 @@ spec:
1616
memory: "200Mi"
1717
cpu: "500m"
1818
- name: busybox-cnt02
19-
image: busybox
19+
image: busybox:1.28
2020
command: ["/bin/sh"]
2121
args: ["-c", "while true; do echo hello from cnt02; sleep 10;done"]
2222
resources:
2323
requests:
2424
memory: "100Mi"
2525
cpu: "100m"
2626
- name: busybox-cnt03
27-
image: busybox
27+
image: busybox:1.28
2828
command: ["/bin/sh"]
2929
args: ["-c", "while true; do echo hello from cnt03; sleep 10;done"]
3030
resources:
3131
limits:
3232
memory: "200Mi"
3333
cpu: "500m"
3434
- name: busybox-cnt04
35-
image: busybox
35+
image: busybox:1.28
3636
command: ["/bin/sh"]
3737
args: ["-c", "while true; do echo hello from cnt04; sleep 10;done"]

content/ko/examples/admin/resource/limit-range-pod-2.yaml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ metadata:
55
spec:
66
containers:
77
- name: busybox-cnt01
8-
image: busybox
8+
image: busybox:1.28
99
command: ["/bin/sh"]
1010
args: ["-c", "while true; do echo hello from cnt01; sleep 10;done"]
1111
resources:
@@ -16,22 +16,22 @@ spec:
1616
memory: "200Mi"
1717
cpu: "500m"
1818
- name: busybox-cnt02
19-
image: busybox
19+
image: busybox:1.28
2020
command: ["/bin/sh"]
2121
args: ["-c", "while true; do echo hello from cnt02; sleep 10;done"]
2222
resources:
2323
requests:
2424
memory: "100Mi"
2525
cpu: "100m"
2626
- name: busybox-cnt03
27-
image: busybox
27+
image: busybox:1.28
2828
command: ["/bin/sh"]
2929
args: ["-c", "while true; do echo hello from cnt03; sleep 10;done"]
3030
resources:
3131
limits:
3232
memory: "200Mi"
3333
cpu: "500m"
3434
- name: busybox-cnt04
35-
image: busybox
35+
image: busybox:1.28
3636
command: ["/bin/sh"]
3737
args: ["-c", "while true; do echo hello from cnt04; sleep 10;done"]

content/ko/examples/admin/resource/limit-range-pod-3.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ metadata:
55
spec:
66
containers:
77
- name: busybox-cnt01
8-
image: busybox
8+
image: busybox:1.28
99
resources:
1010
limits:
1111
memory: "300Mi"

content/ko/examples/application/job/cronjob.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ spec:
1010
spec:
1111
containers:
1212
- name: hello
13-
image: busybox
13+
image: busybox:1.28
1414
imagePullPolicy: IfNotPresent
1515
command:
1616
- /bin/sh

content/ko/examples/application/job/job-tmpl.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,6 @@ spec:
1313
spec:
1414
containers:
1515
- name: c
16-
image: busybox
16+
image: busybox:1.28
1717
command: ["sh", "-c", "echo Processing item $ITEM && sleep 5"]
1818
restartPolicy: Never

content/ko/examples/application/mysql/mysql-configmap.yaml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -9,8 +9,10 @@ data:
99
# Primary에만 이 구성을 적용한다.
1010
[mysqld]
1111
log-bin
12+
datadir=/var/lib/mysql/mysql
1213
replica.cnf: |
1314
# 레플리카에만 이 구성을 적용한다.
1415
[mysqld]
1516
super-read-only
17+
datadir=/var/lib/mysql/mysql
1618

content/ko/examples/application/mysql/mysql-services.yaml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,4 +27,3 @@ spec:
2727
port: 3306
2828
selector:
2929
app: mysql
30-

0 commit comments

Comments
 (0)