diff --git a/ansible/site.yml b/ansible/site.yml index 6065c9c4dc..ecddd05ea5 100644 --- a/ansible/site.yml +++ b/ansible/site.yml @@ -133,7 +133,6 @@ - name: Apply role mariadb gather_facts: false hosts: mariadb - serial: '{{ serial|default("0") }}' roles: - { role: mariadb, tags: mariadb, diff --git a/releasenotes/notes/disable-serial-in-default-442093aca22658f4.yaml b/releasenotes/notes/disable-serial-in-default-442093aca22658f4.yaml new file mode 100644 index 0000000000..cbb2438ea0 --- /dev/null +++ b/releasenotes/notes/disable-serial-in-default-442093aca22658f4.yaml @@ -0,0 +1,5 @@ +--- +features: + - Run ansible playbooks in serial is disabled by default now. Serial is not + recommended. But you can enable it by configuring ANSIBLE_SERIAL + environment variable. diff --git a/tools/kolla-ansible b/tools/kolla-ansible index 251b3239ad..a9cb0b4197 100755 --- a/tools/kolla-ansible +++ b/tools/kolla-ansible @@ -80,6 +80,9 @@ CONFIG_DIR="/etc/kolla" PASSWORDS_FILE="${CONFIG_DIR}/passwords.yml" DANGER_CONFIRM= INCLUDE_IMAGES= +# Serial is not recommended and disable in default. User could enable it by +# simple configure ANSIBLE_SERIAL variable +ANSIBLE_SERIAL=${ANSIBLE_SERIAL:-0} while [ "$#" -gt 0 ]; do case "$1" in @@ -207,11 +210,11 @@ EOF ;; (upgrade) ACTION="Upgrading OpenStack Environment" - EXTRA_OPTS="$EXTRA_OPTS -e action=upgrade -e serial=30%" + EXTRA_OPTS="$EXTRA_OPTS -e action=upgrade -e serial=${ANSIBLE_SERIAL}" ;; (reconfigure) ACTION="Reconfigure OpenStack service" - EXTRA_OPTS="$EXTRA_OPTS -e action=reconfigure -e serial=30%" + EXTRA_OPTS="$EXTRA_OPTS -e action=reconfigure -e serial=${ANSIBLE_SERIAL}" ;; (stop) ACTION="Stop Kolla containers"