From eb029212158f1b9fe52cba51dd8cc09b13c47c0c Mon Sep 17 00:00:00 2001 From: Dmitriy Rabotyagov Date: Wed, 13 Oct 2021 22:02:03 +0300 Subject: [PATCH] Fix manila haproxy manage In manila playbook we incorrectly defined haproxy backend name. This wasn't catched by CI since we do single node deployment. Closes-Bug: #1947026 Change-Id: I924504060179542bd2347b5155f70795d065381b --- playbooks/os-manila-install.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/playbooks/os-manila-install.yml b/playbooks/os-manila-install.yml index 8426d21b47..f0a5321d75 100644 --- a/playbooks/os-manila-install.yml +++ b/playbooks/os-manila-install.yml @@ -44,7 +44,7 @@ # the load balancer back end for this container. - include_tasks: common-tasks/haproxy-endpoint-manage.yml vars: - haproxy_backend: manila_api-back + haproxy_backend: manila-back haproxy_state: disabled when: - "'manila_api' in group_names" @@ -63,7 +63,7 @@ # to available again. - include_tasks: common-tasks/haproxy-endpoint-manage.yml vars: - haproxy_backend: manila_api-back + haproxy_backend: manila-back haproxy_state: enabled when: - "'manila_api' in group_names"