2020-03-15 10:32:34 +00:00
# Adding/replacing a node
Modified from [comments in #3471 ](https://github.com/kubernetes-sigs/kubespray/issues/3471#issuecomment-530036084 )
2021-03-24 00:26:05 +00:00
## Limitation: Removal of first kube_control_plane and etcd-master
2020-05-18 09:35:37 +00:00
2021-03-24 00:26:05 +00:00
Currently you can't remove the first node in your kube_control_plane and etcd-master list. If you still want to remove this node you have to:
2020-05-18 09:35:37 +00:00
### 1) Change order of current masters
Modify the order of your master list by pushing your first entry to any other position. E.g. if you want to remove `node-1` of the following example:
```yaml
children:
2021-03-24 00:26:05 +00:00
kube_control_plane:
2020-05-18 09:35:37 +00:00
hosts:
node-1:
node-2:
node-3:
kube-node:
hosts:
node-1:
node-2:
node-3:
etcd:
hosts:
node-1:
node-2:
node-3:
```
change your inventory to:
```yaml
children:
2021-03-24 00:26:05 +00:00
kube_control_plane:
2020-05-18 09:35:37 +00:00
hosts:
node-2:
node-3:
node-1:
kube-node:
hosts:
node-2:
node-3:
node-1:
etcd:
hosts:
node-2:
node-3:
node-1:
```
## 2) Upgrade the cluster
2020-09-07 09:11:42 +00:00
run `upgrade-cluster.yml` or `cluster.yml` . Now you are good to go on with the removal.
2020-05-18 09:35:37 +00:00
2020-03-15 10:32:34 +00:00
## Adding/replacing a worker node
This should be the easiest.
### 1) Add new node to the inventory
### 2) Run `scale.yml`
2020-05-18 09:35:37 +00:00
You can use `--limit=NODE_NAME` to limit Kubespray to avoid disturbing other nodes in the cluster.
2020-03-15 10:32:34 +00:00
2020-04-17 23:23:36 +00:00
Before using `--limit` run playbook `facts.yml` without the limit to refresh facts cache for all nodes.
2020-05-18 09:35:37 +00:00
### 3) Remove an old node with remove-node.yml
2020-03-15 10:32:34 +00:00
With the old node still in the inventory, run `remove-node.yml` . You need to pass `-e node=NODE_NAME` to the playbook to limit the execution to the node being removed.
2020-05-18 09:35:37 +00:00
2020-09-17 09:45:05 +00:00
If the node you want to remove is not online, you should add `reset_nodes=false` to your extra-vars: `-e node=NODE_NAME -e reset_nodes=false` .
2020-05-18 09:35:37 +00:00
Use this flag even when you remove other types of nodes like a master or etcd nodes.
2020-03-15 10:32:34 +00:00
### 5) Remove the node from the inventory
That's it.
## Adding/replacing a master node
2020-05-18 09:35:37 +00:00
### 1) Run `cluster.yml`
2020-03-15 10:32:34 +00:00
2020-05-18 09:35:37 +00:00
Append the new host to the inventory and run `cluster.yml` . You can NOT use `scale.yml` for that.
2020-03-15 10:32:34 +00:00
### 3) Restart kube-system/nginx-proxy
In all hosts, restart nginx-proxy pod. This pod is a local proxy for the apiserver. Kubespray will update its static config, but it needs to be restarted in order to reload.
```sh
# run in every host
docker ps | grep k8s_nginx-proxy_nginx-proxy | awk '{print $1}' | xargs docker restart
```
### 4) Remove old master nodes
2020-05-18 09:35:37 +00:00
With the old node still in the inventory, run `remove-node.yml` . You need to pass `-e node=NODE_NAME` to the playbook to limit the execution to the node being removed.
If the node you want to remove is not online, you should add `reset_nodes=false` to your extra-vars.
2020-03-15 10:32:34 +00:00
2020-05-18 09:35:37 +00:00
## Adding an etcd node
2020-03-15 10:32:34 +00:00
You need to make sure there are always an odd number of etcd nodes in the cluster. In such a way, this is always a replace or scale up operation. Either add two new nodes or remove an old one.
### 1) Add the new node running cluster.yml
2021-03-24 00:26:05 +00:00
Update the inventory and run `cluster.yml` passing `--limit=etcd,kube_control_plane -e ignore_assert_errors=yes` .
2020-05-18 09:35:37 +00:00
If the node you want to add as an etcd node is already a worker or master node in your cluster, you have to remove him first using `remove-node.yml` .
2020-03-15 10:32:34 +00:00
2021-03-24 00:26:05 +00:00
Run `upgrade-cluster.yml` also passing `--limit=etcd,kube_control_plane -e ignore_assert_errors=yes` . This is necessary to update all etcd configuration in the cluster.
2020-03-15 10:32:34 +00:00
2020-05-18 09:35:37 +00:00
At this point, you will have an even number of nodes.
Everything should still be working, and you should only have problems if the cluster decides to elect a new etcd leader before you remove a node.
Even so, running applications should continue to be available.
2020-03-15 10:32:34 +00:00
2020-05-18 09:35:37 +00:00
If you add multiple ectd nodes with one run, you might want to append `-e etcd_retries=10` to increase the amount of retries between each ectd node join.
Otherwise the etcd cluster might still be processing the first join and fail on subsequent nodes. `etcd_retries=10` might work to join 3 new nodes.
2020-03-15 10:32:34 +00:00
2020-05-18 09:35:37 +00:00
## Removing an etcd node
2020-03-15 10:32:34 +00:00
2020-06-12 08:13:54 +00:00
### 1) Remove an old etcd node
2020-05-18 09:35:37 +00:00
With the node still in the inventory, run `remove-node.yml` passing `-e node=NODE_NAME` as the name of the node that should be removed.
If the node you want to remove is not online, you should add `reset_nodes=false` to your extra-vars.
2020-06-12 08:13:54 +00:00
### 2) Make sure only remaining nodes are in your inventory
2020-05-18 09:35:37 +00:00
Remove `NODE_NAME` from your inventory file.
2020-03-15 10:32:34 +00:00
2020-06-12 08:13:54 +00:00
### 3) Update kubernetes and network configuration files with the valid list of etcd members
2020-03-15 10:32:34 +00:00
2020-05-18 09:35:37 +00:00
Run `cluster.yml` to regenerate the configuration files on all remaining nodes.
2020-06-12 08:13:54 +00:00
### 4) Shutdown the old instance
2020-05-18 09:35:37 +00:00
That's it.