Ansible 版本:ansible 2.4.2.0
我想按顺序启动 VM 取决于角色(主/备份)。多个 VM ID 存储在 2 个文件master
和backup
. 控制器流程应如下所示
- 从文件中逐个迭代VM ID
- 对于每次迭代,应通知处理程序。即迭代应该等待处理程序完成
- 如果处理程序失败(或处于等待状态),迭代不应移动前言。
作为参考,您可以查看以下剧本
- name: Performs Power Actions VMs
hosts: localhost
vars:
- status: "{% if action=='stop' %}SHUTOFF{% else %}ACTIVE{% endif %}" # For Checking VM status
tasks:
- name: Staring Master VM
shell: |
echo {{ item }} > /tmp/current
echo "RUN nova start {{ item }} HERE!!!"
when: action == "start"
with_lines: cat ./master
notify: "Poll VM power status"
- name: Starting Backup VM
shell: |
echo {{ item }} > /tmp/current
echo "RUN nova start {{ item }} HERE!!!"
when: action == "start"
with_lines: cat ./backup
notify: "Poll VM power status"
handlers:
- name: Poll VM power status
shell: openstack server show -c status --format value `cat /tmp/current`
register: cmd_out
until: cmd_out.stdout == status
retries: 5
delay: 10
对于上面的剧本,我看到的是在整个迭代完成后通知处理程序。
PLAY [Performs Power Actions on ESC VMs] **********************************************************************************************
TASK [Stopping Backup VM] *********************************************************************************************************
skipping: [localhost] => (item=Test)
TASK [Stopping Master VM] *********************************************************************************************************
skipping: [localhost] => (item=Test)
TASK [Staring Master VM] **********************************************************************************************************
changed: [localhost] => (item=Test)
TASK [Starting Backup VM] *********************************************************************************************************
changed: [localhost] => (item=Test)
TASK [Removing tmp files] *************************************************************************************************************
changed: [localhost] => (item=./master)
changed: [localhost] => (item=./backup)
RUNNING HANDLER [Poll VM power status] ********************************************************************************************
FAILED - RETRYING: Poll ESC VM power status (5 retries left).
^C [ERROR]: User interrupted execution
有没有更好的方法来解决这个问题?或任何建议如何适应block
这个剧本来解决?
PS:任务中的虚拟命令RUN nova start {{ item }} HERE!!!
不会等待。这就是为什么我必须手动检查状态。