0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 3 years have passed since last update.

【Kubernetes】podのレプリカを作る(手動でスケーリングする方法) no.4

Posted at

名称未設定のデザイン (12).png

こんにちは。まゆみです。

Kubernetes についての記事をシリーズで書いています

前回と前々回の記事で、

①Podsを作り
②そのPodsに外部からアクセスする方法

を書いてきました。

次にやりたい事と言えば、あなたが作ったPod(Container)に外部からのアクセスが増えた時、Podを増やしたいですよね。

172.17.0.3.png

そのような時、どのようにKubernetesを使ったらいいのかを今回の記事にまとめていこうと思います

kubectl scaleでアップスケーリングする

kubectl scale <オブジェクトの種類>/<オブジェクトの名前> --replicas=<増やしたい数>

結果は下のようになります

2021-07-20_13-27-43.png

kubectl scale でダウンスケーリングする

逆に、トラフィックが減ったのでオブジェクトの数を減らしたい時もkubectl scale を使います

減らしたい時は--replicas=に書く数字を今より小さいものに書き換えます。

2021-07-20_13-35-28.png

まとめ

今回の記事では、『手動』でスケーリングする方法を書かせていただきました。

また記事を改めて、『自動で』スケーリングする方法も書いていこうと思います。

0
0
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?