master-logs 1.1 KB

12345678910111213141516171819202122232425262728
  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. # container name is ignored for services
  10. types=( "atomic-openshift" "origin" )
  11. for type in "${types[@]}"; do
  12. if systemctl cat "${type}-master-${1}.service" &>/dev/null; then
  13. journalctl -u "${type}-master-${1}.service" "${@:3}"
  14. exit 0
  15. fi
  16. done
  17. pod=$(crictl pods -l -q --label "openshift.io/component=${1}" --label "io.kubernetes.container.name=POD" 2>/dev/null)
  18. uid=$(crictl inspectp ${pod} 2>/dev/null | python -c 'import sys, json; print json.load(sys.stdin)["status"]["labels"]["io.kubernetes.pod.uid"]')
  19. if [[ -z "${uid}" ]]; then
  20. echo "Component ${1} is stopped or not running" 1>&2
  21. exit 0
  22. fi
  23. container=$(crictl ps -l -q --label "io.kubernetes.pod.uid=${uid}" --label "io.kubernetes.container.name=${2}" 2>/dev/null)
  24. exec crictl logs "${@:3}" "${container}"