Skip to content

Commit

Permalink
Merge pull request kubernetes-csi#43 from pohly/system-pod-logging
Browse files Browse the repository at this point in the history
prow.sh: also log output of system containers
  • Loading branch information
k8s-ci-robot committed Nov 6, 2019
2 parents ee22a9c + f41c135 commit 4fcafec
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions prow.sh
Expand Up @@ -683,16 +683,16 @@ EOF

}

# Gets logs of all containers in the default namespace. When passed -f, kubectl will
# Gets logs of all containers in all namespaces. When passed -f, kubectl will
# keep running and capture new output. Prints the pid of all background processes.
# The caller must kill (when using -f) and/or wait for them.
#
# May be called multiple times and thus appends.
start_loggers () {
kubectl get pods -o go-template --template='{{range .items}}{{.metadata.name}} {{range .spec.containers}}{{.name}} {{end}}{{"\n"}}{{end}}' | while read -r pod containers; do
kubectl get pods --all-namespaces -o go-template --template='{{range .items}}{{.metadata.namespace}} {{.metadata.name}} {{range .spec.containers}}{{.name}} {{end}}{{"\n"}}{{end}}' | while read -r namespace pod containers; do
for container in $containers; do
mkdir -p "${ARTIFACTS}/$pod"
kubectl logs "$@" "$pod" "$container" >>"${ARTIFACTS}/$pod/$container.log" &
mkdir -p "${ARTIFACTS}/$namespace/$pod"
kubectl logs -n "$namespace" "$@" "$pod" "$container" >>"${ARTIFACTS}/$namespace/$pod/$container.log" &
echo "$!"
done
done
Expand Down

0 comments on commit 4fcafec

Please sign in to comment.