From 6f2a3d903363c7594cdaa7fbae860bceb20633e8 Mon Sep 17 00:00:00 2001
From: import this <97586125+serinko@users.noreply.github.com>
Date: Fri, 10 Apr 2026 14:34:11 +0200
Subject: [PATCH] [DOCs/operators]: Add -t flag to ansible guides
---
.../pages/operators/orchestration/ansible.mdx | 18 +++++++++++++++++-
1 file changed, 17 insertions(+), 1 deletion(-)
diff --git a/documentation/docs/pages/operators/orchestration/ansible.mdx b/documentation/docs/pages/operators/orchestration/ansible.mdx
index 8a2540797a..8d6016bbd7 100644
--- a/documentation/docs/pages/operators/orchestration/ansible.mdx
+++ b/documentation/docs/pages/operators/orchestration/ansible.mdx
@@ -267,7 +267,15 @@ ansible-playbook upgrade.yml -l "*exit*"
###### Role limit
-Sometimes you may want to run just one role at a time, for that use `-q`, for example:
+
+To update your exit policy by using the newest [NTM](https://github.com/nymtech/nym/blob/develop/scripts/nym-node-setup/network-tunnel-manager.sh) via Ansible, just run:
+```sh
+ansible-playbook deploy.yml -t network_tunnel_manager
+```
+This will download the script from `develop`, make executable and run it with the command `complete_networking_configuration`.
+
+
+Sometimes you may want to run just one tag at a time, for that use `-t` flag, for example:
```sh
# in case of wanting to run only quic deployment role
ansible-playbook deploy.yml -t quic
@@ -276,6 +284,14 @@ ansible-playbook deploy.yml -t quic
ansible-playbook deploy.yml -l node2 -t quic
```
+To list all tags, run:
+```sh
+ansible-playbook .yml --list-tags
+
+# for example
+ansible-playbook deploy.yml --list-tags
+```
+
###### nocows
Yes, by default there is a cow printed under each task, you can turn it off by opening `playbooks/ansible.cfg` and un-commenting the `nocows` line: