mgr: fix a typo

this tasks isn't using the right container_exec_cmd, that's delegating
to the wrong node.
Let's use the right fact to fix this command.

Signed-off-by: Guillaume Abrioux <gabrioux@redhat.com>
(cherry picked from commit ec33ee7574)
pull/4279/head
Guillaume Abrioux 2019-07-26 17:33:07 +02:00
parent 1a9043128c
commit e2b41a17c0
1 changed files with 1 additions and 1 deletions

View File

@ -5,7 +5,7 @@
when: dashboard_enabled | bool
- name: wait for all mgr to be up
shell: "{{ container_exec_cmd | default('') }} ceph --cluster {{ cluster }} mgr dump -f json | python -c 'import sys, json; print(json.load(sys.stdin)[\"available\"])'"
shell: "{{ container_exec_cmd_mgr | default('') }} ceph --cluster {{ cluster }} mgr dump -f json | python -c 'import sys, json; print(json.load(sys.stdin)[\"available\"])'"
register: mgr_dump
retries: 30
delay: 5