master-logs 797 B

12345678910111213141516
  1. #!/bin/bash
  2. set -euo pipefail
  3. # Return the logs for a given static pod by component name and container name. Remaining arguments are passed to the
  4. # current container runtime.
  5. if [[ -z "${1-}" || -z "${2-}" ]]; then
  6. echo "A component name like 'api', 'etcd', or 'controllers' must be specified along with the container name within that component." 1>&2
  7. exit 1
  8. fi
  9. uid=$(docker ps -l -a --filter "label=openshift.io/component=${1}" --filter "label=io.kubernetes.container.name=POD" --format '{{ .Label "io.kubernetes.pod.uid" }}')
  10. if [[ -z "${uid}" ]]; then
  11. echo "Component ${1} is stopped or not running" 1>&2
  12. exit 0
  13. fi
  14. container=$(docker ps -l -a -q --filter "label=io.kubernetes.pod.uid=${uid}" --filter "label=io.kubernetes.container.name=${2}")
  15. exec docker logs "${@:3}" "${container}"