Merge "Do not try to run etcd in serial mode"

This commit is contained in:
Zuul 2022-06-28 17:18:48 +00:00 committed by Gerrit Code Review
commit eeee5100ad
2 changed files with 14 additions and 1 deletions

View File

@ -22,7 +22,7 @@
- name: Install etcd server cluster
hosts: etcd
gather_facts: false
serial: "{{ etcd_serial | default(1) }}"
serial: "{{ etcd_serial | default('100%') }}"
user: root
pre_tasks:
- include_tasks: "common-tasks/os-{{ container_tech | default('lxc') }}-container-setup.yml"

View File

@ -23,6 +23,19 @@
tags:
- always
- name: Install etcd cluster
hosts: zun_api
gather_facts: false
serial: "{{ etcd_serial | default('100%') }}"
roles:
- role: "etcd"
vars:
etcd_cluster_group: "zun_api"
etcd_install_type: server
tags:
- zun-install
- etcd-server
- name: Install the zun components
hosts: zun_all
gather_facts: false