master-restart 1.1 KB

12345678910111213141516171819202122232425262728293031323334353637
  1. #!/bin/bash
  2. set -euo pipefail
  3. # Restart the named component by stopping its base container.
  4. if [[ -z "${1-}" ]]; then
  5. echo "A component name like 'api', 'etcd', or 'controllers' must be specified." 1>&2
  6. exit 1
  7. fi
  8. types=( "atomic-openshift" "origin" )
  9. for type in "${types[@]}"; do
  10. if systemctl cat "${type}-master-${1}.service" &>/dev/null; then
  11. systemctl restart "${type}-master-${1}.service"
  12. exit 0
  13. fi
  14. done
  15. # TODO: move to cri-ctl
  16. # TODO: short term hack for cri-o
  17. # Get a child container name to wait for it to stop
  18. child_container=$(docker ps -l -q --filter "label=io.kubernetes.container.name=${1}")
  19. container=$(docker ps -l -q --filter "label=openshift.io/component=${1}" --filter "label=io.kubernetes.container.name=POD")
  20. if [[ -z "${container}" ]]; then
  21. echo "Component ${1} is already stopped" 1>&2
  22. exit 0
  23. fi
  24. # Stop the pod
  25. docker stop "${container}" --time 30 >/dev/null
  26. # Wait for child container to change state
  27. if [[ -z "${child_container}" ]]; then
  28. echo "Component ${1} is already stopped" 1>&2
  29. exit 0
  30. fi
  31. exec timeout 60 docker wait $child_container