浏览代码

test/aws/scaleup: gather machineconfigpool/worker on failure

Russell Teague 5 年之前
父节点
当前提交
5b32103f53
共有 1 个文件被更改,包括 18 次插入2 次删除
  1. 18 2
      test/aws/scaleup.yml

+ 18 - 2
test/aws/scaleup.yml

@@ -108,5 +108,21 @@
       state: absent
     with_items: "{{ pre_scaleup_machineset_names }}"
 
-  - name: Wait for worker configs to roll out
-    command: oc wait machineconfigpool/worker --for=condition=Updated --timeout=5m
+  - block:
+    - name: Wait for worker configs to roll out
+      command: >
+        oc wait machineconfigpool/worker
+        --kubeconfig={{ kubeconfig_path }}
+        --for=condition=Updated
+        --timeout=5m
+
+    rescue:
+    - name: DEBUG - Get worker machine config pool
+      command: >
+        oc get machineconfigpool/worker
+        --kubeconfig={{ kubeconfig_path }}
+        --output=json
+
+    - name: DEBUG - Worker config rollout failed
+      fail:
+        msg: "Worker config rollout failed"