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 944300b commit 26ed459Copy full SHA for 26ed459
.github/workflows/e2e_tests.yaml
@@ -92,6 +92,12 @@ jobs:
92
echo "Printing KubeRay operator logs"
93
kubectl logs -n ray-system --tail -1 -l app.kubernetes.io/name=kuberay | tee ${CODEFLARE_TEST_OUTPUT_DIR}/kuberay.log
94
95
+ - name: Export all KinD pod logs
96
+ if: always() && steps.deploy.outcome == 'success'
97
+ run: |
98
+ echo "Export all KinD pod logs to ${CODEFLARE_TEST_OUTPUT_DIR}"
99
+ kind export logs ${CODEFLARE_TEST_OUTPUT_DIR} --name cluster
100
+
101
- name: Upload logs
102
uses: actions/upload-artifact@v3
103
if: always() && steps.deploy.outcome == 'success'
0 commit comments