Skip to content

Commit

Permalink
Merge pull request #48 from loheagn/master
Browse files Browse the repository at this point in the history
Fix kubectl syntax example in the zh-cn and ja-jp translations
  • Loading branch information
jamiehannaford committed Sep 21, 2022
2 parents 36260d6 + cc7a006 commit 199cc34
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion ja-jp/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
nginx を Kubernetes クラスターにデプロイしたいとしましょう。私はおそらくターミナルでつぎのようなコマンドをタイプするでしょう。

```bash
kubectl run --image=nginx --replicas=3
kubectl create deployment --image=nginx --replicas=3
```

そしてエンターキーを押します。数秒後、3つの nginx ポッドがすべてのワーカーノードに展開されているのがわかるでしょう。魔法のように動作し、素晴らしいです!しかし、実際のところ何が起こっているのでしょうか。
Expand Down
2 changes: 1 addition & 1 deletion zh-cn/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
想象一下,当你想在 Kubernetes 集群部署 Nginx 时,你会执行以下命令:

```bash
kubectl run nginx --image=nginx --replicas=3
kubectl create deployment nginx --image=nginx --replicas=3
```

几秒后,你将看到三个 Nginx Pod 分布在集群工作节点上。这相当神奇,但它背后究竟发生了什么?
Expand Down

0 comments on commit 199cc34

Please sign in to comment.