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 031e08f commit 5863daaCopy full SHA for 5863daa
.github/workflows/build.yml
@@ -205,7 +205,11 @@ jobs:
205
valuesfile=$(basename ${{ matrix.values_file }} .yaml)
206
echo "logname=${valuesfile%%-*}" >> $GITHUB_OUTPUT
207
kubectl get events --all-namespaces --sort-by='.metadata.creationTimestamp' &> kube_events.log
208
-
+ for pod in $(kubectl get pod --field-selector=status.phase==Running -o name); do
209
+ echo "::debug:: Created logs for pod $pod"
210
+ kubectl logs $pod --all-containers=true &> ${pod}.log
211
+ done
212
+ ls
213
kubectl get pods &> kube_status.log
214
exit 1
215
fi;
0 commit comments