You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
|
|
|
# TP Initialisation d'un cluster Swarm
|
|
|
|
|
|
|
|
|
|
Objectif : Créer un cluster Swarm minimal.
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
* Initialiser un cluster Swarm sur la première VM.
|
|
|
|
|
|
|
|
|
|
* Ajouter la seconde VM au cluster Swarm.
|
|
|
|
|
(en tant que noeud de type `worker`)
|
|
|
|
|
|
|
|
|
|
* Vérifier que le second noeud est bien reconnu par le Manager.
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
<!-- .slide: data-background="#2E2E2E" data-state="medium-code" -->
|
|
|
|
|
Sur la première VM, initialiser un cluster Swarm, et récupérer le token
|
|
|
|
|
```none
|
|
|
|
|
$ docker swarm init --advertise-addr <ip-address-of-the-master>:2377
|
|
|
|
|
```
|
|
|
|
|
|
|
|
|
|
Sur la seconde VM, joindre la machine au cluster à l'aide du token
|
|
|
|
|
```none
|
|
|
|
|
$ docker swarm join ...
|
|
|
|
|
```
|
|
|
|
|
|
|
|
|
|
Sur la première VM, vérifier que les deux machines font bien partie du cluster
|
|
|
|
|
```none
|
|
|
|
|
$ docker node ls
|
|
|
|
|
```
|