From 54314e3d1c0630783e26df1f56079689be82eb77 Mon Sep 17 00:00:00 2001 From: Milos Stankovic <82043364+morph-dev@users.noreply.github.com> Date: Fri, 27 Sep 2024 09:54:18 +0300 Subject: [PATCH] docs: add note about state bridges to deployment docs (#1492) --- book/src/developers/contributing/releases/deployment.md | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/book/src/developers/contributing/releases/deployment.md b/book/src/developers/contributing/releases/deployment.md index 290311e68..04abfdd3d 100644 --- a/book/src/developers/contributing/releases/deployment.md +++ b/book/src/developers/contributing/releases/deployment.md @@ -57,7 +57,10 @@ This step directs Ansible to use the current master version of trin. Read [about - Trin nodes: - `ansible-playbook playbook.yml --tags trin` - State network nodes (check with the team if there is a reason not to update them): - - `ansible-playbook playbook.yml --tags state-network` + - Recently, we don't regularly deploy state bridge nodes (because they run for a long time and we don't want to restart them). To deploy all other state nodes, use following command: + - `ansible-playbook playbook.yml --tags state-network --limit state_stun,state_bootnode,state_regular` + - To deploy to all state network nodes: + - `ansible-playbook playbook.yml --tags state-network` - Run Glados deployment: updates glados + portal client (currently configured as trin, but this could change) - `cd ../../glados/ansible` - `ansible-playbook playbook.yml --tags glados`