[ja] Change an container image which hello-node to e2e-test-images (#47899)

* Change hello-node image

Can not pull echo-server image and different from english page

* Add a comment translated from English
pull/48024/head
Kazuma Inamura 2024-09-19 23:20:01 +09:00 committed by GitHub
parent 477d5ffa65
commit a18e846d49
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 2 additions and 1 deletions

View File

@ -64,7 +64,8 @@ Kubernetesの[*Pod*](/ja/docs/concepts/workloads/pods/) は、コンテナの管
1. `kubectl create` コマンドを使用してPodを管理するDeploymentを作成してください。Podは提供されたDockerイメージを元にコンテナを実行します。
```shell
kubectl create deployment hello-node --image=registry.k8s.io/echoserver:1.4
# Webサーバーを含むテストコンテナイメージを実行する
kubectl create deployment hello-node --image=registry.k8s.io/e2e-test-images/agnhost:2.39 -- /agnhost netexec --http-port=8080
```
2. Deploymentを確認します: