From c1f95573e3f9501c251efd0140c96359216b6560 Mon Sep 17 00:00:00 2001 From: Suguru Hirahara Date: Thu, 21 Nov 2024 21:23:52 +0900 Subject: [PATCH] Edit docs/quick-start.md: run the setup command with install-all by default Refer docs/maintenance-upgrading-services.md Signed-off-by: Suguru Hirahara --- docs/quick-start.md | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/docs/quick-start.md b/docs/quick-start.md index efe930a39..87a725613 100644 --- a/docs/quick-start.md +++ b/docs/quick-start.md @@ -189,5 +189,7 @@ If it looks good to you, go to the `matrix-docker-ansible-deploy` directory and Then, re-run the setup command as below: ```sh -ansible-playbook -i inventory/hosts setup.yml --tags=setup-all,start +ansible-playbook -i inventory/hosts setup.yml --tags=install-all,start ``` + +Note that if you remove components from `vars.yml`, or if we switch some component from being installed by default to not being installed by default anymore, you'd need to run the setup command with `--tags=setup-all` instead of `--tags=install-all`.