File tree 1 file changed +3
-3
lines changed
1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -184,19 +184,19 @@ jobs:
184
184
if : always() && steps.deploy.outcome == 'success'
185
185
run : |
186
186
echo "Printing CodeFlare operator logs"
187
- kubectl logs -n openshift-operators --tail -1 -l app.kubernetes.io/name=codeflare-operator
187
+ kubectl logs -n openshift-operators --tail -1 -l app.kubernetes.io/name=codeflare-operator | tee ${CODEFLARE_TEST_OUTPUT_DIR}/codeflare-operator.log
188
188
189
189
- name : Print MCAD controller logs
190
190
if : always() && steps.deploy.outcome == 'success'
191
191
run : |
192
192
echo "Printing MCAD controller logs"
193
- kubectl logs -n codeflare-system --tail -1 -l component=multi-cluster-application-dispatcher
193
+ kubectl logs -n codeflare-system --tail -1 -l component=multi-cluster-application-dispatcher | tee ${CODEFLARE_TEST_OUTPUT_DIR}/mcad.log
194
194
195
195
- name : Print KubeRay operator logs
196
196
if : always() && steps.deploy.outcome == 'success'
197
197
run : |
198
198
echo "Printing KubeRay operator logs"
199
- kubectl logs -n ray-system --tail -1 -l app.kubernetes.io/name=kuberay
199
+ kubectl logs -n ray-system --tail -1 -l app.kubernetes.io/name=kuberay | tee ${CODEFLARE_TEST_OUTPUT_DIR}/kuberay.log
200
200
201
201
- name : Upload logs
202
202
uses : actions/upload-artifact@v3
You can’t perform that action at this time.
0 commit comments