From 37d26f91f8fa73c2f251ab751f389544fb81a9f3 Mon Sep 17 00:00:00 2001 From: lilin90 Date: Fri, 7 Sep 2018 17:17:25 +0800 Subject: [PATCH] op-guide: fix a code typo in Ansible scaling --- op-guide/ansible-deployment-scale.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/op-guide/ansible-deployment-scale.md b/op-guide/ansible-deployment-scale.md index 778ac27f98b25..100a8ca4217aa 100644 --- a/op-guide/ansible-deployment-scale.md +++ b/op-guide/ansible-deployment-scale.md @@ -90,7 +90,7 @@ For example, if you want to add two TiDB nodes (node101, node102) with the IP ad ansible-playbook bootstrap.yml -l 172.16.10.101,172.16.10.102 ``` - > **Note:** If an alias is configured in the `inventory.ini` file, for example, `node101 ansible_host=172.16.10.101`, use `-1` to specify the alias when executing `ansible-playbook`. For example, `ansible-playbook bootstrap.yml -l node101,node102`. This also applies to the following steps. + > **Note:** If an alias is configured in the `inventory.ini` file, for example, `node101 ansible_host=172.16.10.101`, use `-l` to specify the alias when executing `ansible-playbook`. For example, `ansible-playbook bootstrap.yml -l node101,node102`. This also applies to the following steps. 3. Deploy the newly added node: