master-exec 1.1 KB

12345678910111213141516171819202122232425
  1. #!/bin/bash
  2. set -euo pipefail
  3. # Exec a file in the named component by component name and container name.
  4. # Remaining arguments are passed to the command. If no static pods have been
  5. # created yet this will execute on the host.
  6. if [[ -z "${1-}" || -z "${2-}" ]]; then
  7. echo "A component name like 'api', 'etcd', or 'controllers' must be specified along with the container name within that component." 1>&2
  8. exit 1
  9. fi
  10. # We haven't started using static pods yet, assume this command is to be direct executed
  11. if [[ ! -d /etc/origin/node/pods || -z "$( ls -A /etc/origin/node/pods )" ]]; then
  12. exec "${@:3}"
  13. fi
  14. pod=$(crictl pods -l -q --label "openshift.io/component=${1}" --label "io.kubernetes.container.name=POD" 2>/dev/null)
  15. uid=$(crictl inspectp ${pod} 2>/dev/null | python -c 'import sys, json; print json.load(sys.stdin)["status"]["labels"]["io.kubernetes.pod.uid"]')
  16. if [[ -z "${uid}" ]]; then
  17. echo "Component ${1} is stopped or not running" 1>&2
  18. exit 0
  19. fi
  20. container=$(crictl ps -l -q --label "io.kubernetes.pod.uid=${uid}" --label "io.kubernetes.container.name=${2}" 2>/dev/null)
  21. exec crictl exec "${container}" "${@:3}"