master-exec 1.1 KB

1234567891011121314151617181920212223242526
  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. # TODO: move to cri-ctl
  15. # TODO: short term hack for cri-o
  16. uid=$(docker ps -l -a --filter "label=openshift.io/component=${1}" --filter "label=io.kubernetes.container.name=POD" --format '{{ .Label "io.kubernetes.pod.uid" }}')
  17. if [[ -z "${uid}" ]]; then
  18. echo "Component ${1} is stopped or not running" 1>&2
  19. exit 0
  20. fi
  21. container=$(docker ps -l -a -q --filter "label=io.kubernetes.pod.uid=${uid}" --filter "label=io.kubernetes.container.name=${2}")
  22. exec docker exec "${container}" "${@:3}"