We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 2c77fc7 commit 29734a3Copy full SHA for 29734a3
e2e-tests/experiments/infra-chaos/multiple_application_on_single_volume/test.yml
@@ -181,7 +181,7 @@
181
delay: 15
182
retries: 30
183
184
- # wait 5 minutes
+ # wait for 5 minutes
185
- name: Wait for the application pod to get evicted
186
wait_for:
187
timeout: 300
@@ -260,6 +260,13 @@
260
pod_name: "{{ scaled_pod_name.stdout }}"
261
when: data_persistence != ''
262
263
+ - name: Scale down the deployment again to single replica
264
+ shell: kubectl scale deploy -n {{ namespace }} "{{ app_deploy_name.stdout }}" --replicas=1
265
+ args:
266
+ executable: /bin/bash
267
+ register: scale_deploy
268
+ failed_when: scale_deploy.rc != 0
269
+
270
- set_fact:
271
flag: "Pass"
272
0 commit comments