master-restart 723 B

12345678910111213141516171819202122232425
  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. pod=$(crictl pods -l -q --label "openshift.io/component=${1}" --label "io.kubernetes.container.name=POD" 2>/dev/null)
  16. if [[ -z "${pod}" ]]; then
  17. echo "Component ${1} is already stopped" 1>&2
  18. exit 0
  19. fi
  20. # Stop the pod
  21. # TODO(runcom): expose timeout in the CRI
  22. crictl stopp "${pod}" >/dev/null