Fix typo with Manila upgrade template

There was a typo in the update_tasks for Manila which was causing
updates and upgrades to fail. This patch fixes the typo.

Closes-Bug: 1775667

Change-Id: I88dd16fa94111a4eb56aeaa32b560cf7d12b9f82
This commit is contained in:
Dustin Schoenbrun 2018-06-07 12:54:22 -04:00
parent e0139adfda
commit 5e3d90f851
2 changed files with 5 additions and 1 deletions

View File

@ -190,7 +190,7 @@ outputs:
- block:
- name: Get a list of container using Manila-Share image
shell: "docker ps -a -q -f 'ancestor={{manila_share_image_id.stdout}}'"
register: manila-share_containers_to_destroy
register: manila_share_containers_to_destroy
# It will be recreated with the delpoy step.
- name: Remove any container using the same Manila-Share image
shell: "docker rm -fv {{item}}"

View File

@ -0,0 +1,4 @@
---
fixes:
- Fix a typo in the manila-share pacemaker template which was causing
failures on upgrades and updates.