0
2

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 5 years have passed since last update.

Docker Swarmでコンテナのオーケストレーション

Posted at

Docker Swarmでコンテナのオーケストレーションを試したときの備忘です。
Docker環境が複数必要です。

Docker Swarmとは

Docker に対応するネイティブなクラスタリング用ツールです。Docker Swarm は標準 Docker API で操作できます。そのため、Docker ホスト群を集め、1つの仮想 Docker ホストとして扱えます。

参考
http://docs.docker.jp/swarm/overview.html

Docker Swarmを使ってクラスタ作成

//node1
$ docker swarm init --advertise-addr eth0
Swarm initialized: current node (4qmd5zm5h002y8ww8lwz5g07v) is now a manager.

To add a worker to this swarm, run the following command:

    docker swarm join --token SWMTKN-1-31gbv0gje7royyy3x9i09iyd2h00hwtx8a21vlq23x2fxrje5n-48j2paz9czuz9fl2u4coo9euy 192.168.65.3:2377

To add a manager to this swarm, run 'docker swarm join-token manager' and follow the instructions.

各nodeをクラスタに組み込む

上記コマンドでプリントアウトされたswarmの文をコピー(赤枠部分)
image.png

各nodeで実行

//node2
$docker swarm join --token SWMTKN-1-31gbv0gje7royyy3x9i09iyd2h00hwtx8a21vlq23x2fxrje5n-48j2paz9czuz9fl2u4coo9euy 192.168.65.3:2377
This node joined a swarm as a worker.

//node3
$docker swarm join --token SWMTKN-1-31gbv0gje7royyy3x9i09iyd2h00hwtx8a21vlq23x2fxrje5n-48j2paz9czuz9fl2u4coo9euy 192.168.65.3:2377
This node joined a swarm as a worker.

//node1でクラスタが組まれているか確認 
docker nodes ls
$ docker node ls
ID                            HOSTNAME            STATUS              AVAILABILITY        MANAGER STATUS      ENGINE VERSION
811 *   node1               Ready               Active              Leader              19.03.0-beta2
z08     node2               Ready               Active                                  19.03.0-beta2
0xj     node3               Ready               Active                                  19.03.0-beta2

Node1にコンテナ起動

//Nginxを起動
$docker service create nginx nginx

//起動確認
$docker service ls
ID                  NAME                MODE                REPLICAS            IMAGE               PORTS
v80vj        nginx              replicated          5/5                 nginx:1.12          *:80->80/tcp

Ngingxをスケール

//クラスタ内に5つレプリカを作成する
$docker service update --replicas=5 --detach=true nginx

//起動の確認 1
$docker service ps nginx
    :

//起動の確認 2
$watch -n 1 docker service ps nginx

→nginxがスケールされました。swarmがルーティングの制御もしています。
※curlでアクセスしてみるとレスポンスするnodeが変わるのが確認できます。

所感

AWSのオートスケーリングみたいですねー。ただしswarmはport80しか対応していないらしい。。
からK8Sなのかー

0
2
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
2

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?