mirror of
https://github.com/TECHNOFAB11/zfs-localpv.git
synced 2025-12-12 22:40:12 +01:00
10 lines
223 B
YAML
10 lines
223 B
YAML
|
|
---
|
||
|
|
- name: Checking the status of test specific namespace.
|
||
|
|
k8s_facts:
|
||
|
|
kind: Namespace
|
||
|
|
name: "{{ app_ns }}"
|
||
|
|
register: npstatus
|
||
|
|
until: "'Active' in npstatus.resources.0.status.phase"
|
||
|
|
delay: 30
|
||
|
|
retries: 10
|