We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 38245bd commit d855fcbCopy full SHA for d855fcb
e2e-tests/experiments/functional/lvm-volume-resize/test.yml
@@ -122,6 +122,17 @@
122
executable: /bin/bash
123
register: app_pod_name
124
125
+ - name: Check container status in application pod
126
+ shell: >
127
+ kubectl get pod {{ app_pod_name.stdout }} -n {{ app_ns }} --no-headers
128
+ -o jsonpath='{.status.containerStatuses[].state}'
129
+ args:
130
+ executable: /bin/bash
131
+ register: containerStatus
132
+ until: "'running' in containerStatus.stdout"
133
+ delay: 2
134
+ retries: 45
135
+
136
## Here we will dump +1Gi data than to previous pvc size
137
- set_fact:
138
value_num: '{{ ( (value_str.stdout | int + 1 | int) * 262144) | int }}'
0 commit comments