Skip to content

[ko] Update busybox image #50737

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 1 commit into from
May 26, 2025
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -68,7 +68,7 @@ pod/nginx-701339712-e0qfq 1/1 Running 0 35s
사용자는 다른 파드에서 새 `nginx` 서비스에 접근할 수 있어야 한다. `default` 네임스페이스에 있는 다른 파드에서 `nginx` 서비스에 접근하기 위하여, busybox 컨테이너를 생성한다.

```console
kubectl run busybox --rm -ti --image=busybox:1.28 -- /bin/sh
kubectl run busybox --rm -ti --image=busybox -- /bin/sh
```

사용자 쉘에서, 다음의 명령을 실행한다.
Expand Down Expand Up @@ -111,7 +111,7 @@ networkpolicy.networking.k8s.io/access-nginx created
올바른 레이블이 없는 파드에서 `nginx` 서비스에 접근하려 할 경우, 요청 타임 아웃이 발생한다.

```console
kubectl run busybox --rm -ti --image=busybox:1.28 -- /bin/sh
kubectl run busybox --rm -ti --image=busybox -- /bin/sh
```

사용자 쉘에서, 다음의 명령을 실행한다.
Expand All @@ -130,7 +130,7 @@ wget: download timed out
사용자는 요청이 허용되도록 하기 위하여 올바른 레이블을 갖는 파드를 생성한다.

```console
kubectl run busybox --rm -ti --labels="access=true" --image=busybox:1.28 -- /bin/sh
kubectl run busybox --rm -ti --labels="access=true" --image=busybox -- /bin/sh
```

사용자 쉘에서, 다음의 명령을 실행한다.
Expand Down