when i check the stack_status end to end response shows error
ansible–playbook:
-
hosts: control
tasks: -
name: verify end-to-end index response
uri: url=http://{{item}} return_content=yes
with_items: groups.loadbalancer
register: lb_index -
fail: msg=“index failed to return content”
when: “‘Hello,from VisualPath’ not in item.content”
with_items: “{{lb_index.results}}”