We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 477d5ff commit a18e846Copy full SHA for a18e846
content/ja/docs/tutorials/hello-minikube.md
@@ -64,7 +64,8 @@ Kubernetesの[*Pod*](/ja/docs/concepts/workloads/pods/) は、コンテナの管
64
1. `kubectl create` コマンドを使用してPodを管理するDeploymentを作成してください。Podは提供されたDockerイメージを元にコンテナを実行します。
65
66
```shell
67
- kubectl create deployment hello-node --image=registry.k8s.io/echoserver:1.4
+ # Webサーバーを含むテストコンテナイメージを実行する
68
+ kubectl create deployment hello-node --image=registry.k8s.io/e2e-test-images/agnhost:2.39 -- /agnhost netexec --http-port=8080
69
```
70
71
2. Deploymentを確認します:
0 commit comments