Merge "Fix neutron-server default serial"

This commit is contained in:
Zuul 2020-09-08 20:06:52 +00:00 committed by Gerrit Code Review
commit f16f1f617d
2 changed files with 26 additions and 2 deletions

View File

@ -32,6 +32,18 @@
- neutron
pre_tasks:
# In order to ensure that any container, software or
# config file changes which causes a container/service
# restart do not cause an unexpected outage, we drain
# the load balancer back end for this container.
- include_tasks: ../common-tasks/haproxy-endpoint-manage.yml
vars:
haproxy_backend: neutron_server-back
haproxy_state: disabled
when:
- "'neutron_server' in group_names"
- "groups['neutron_server'] | length > 1"
- name: Determine tunnel bridge IP address
include_tasks: ../common-tasks/dynamic-address-fact.yml
vars:
@ -95,3 +107,15 @@
- role: "system_crontab_coordination"
tags:
- crontab
post_tasks:
# Now that container changes are done, we can set
# the load balancer back end for this container
# to available again.
- include_tasks: ../common-tasks/haproxy-endpoint-manage.yml
vars:
haproxy_backend: neutron_server-back
haproxy_state: enabled
when:
- "'neutron_server' in group_names"
- "groups['neutron_server'] | length > 1"

View File

@ -31,7 +31,7 @@
include: common-playbooks/neutron.yml
vars:
neutron_hosts: "neutron_server"
neutron_serial: "{{ neutron_server_serial | default('100%') }}"
neutron_serial: "{{ neutron_server_serial | default(['1', '100%']) }}"
@ -47,4 +47,4 @@
include: common-playbooks/neutron.yml
vars:
neutron_hosts: "neutron_all:!neutron_linuxbridge_agent:!neutron_openvswitch_agent:!neutron_server"
neutron_serial: "{{ neutron_other_serial | default('20%') }}"
neutron_serial: "{{ neutron_other_serial | default('1') }}"