stack status

This commit is contained in:
2026-05-14 16:59:37 +02:00
parent 5d18e93a98
commit 7f536273d9

View File

@@ -28,10 +28,13 @@
- hosts: control - hosts: control
tasks: tasks:
- name: verify end-to-end index response - name: get elements from loadbalancer group
debug: var=groups.loadbalancer
- name: verify end-to-end connectivity to loadbalancer
uri: url=http://{{item}} return_content=yes uri: url=http://{{item}} return_content=yes
loop: groups.loadbalancer loop: groups.loadbalancer
register: lb_index register: lb_connectivity
- fail: msg="index failed to return content" - fail: msg="index failed to return content"
when: "'Hello, from sunny' not in item.content" when: "'Hello, from sunny' not in item.content"