반응형
아래 Script는 Kuberentes Node의 IP Address를 얻어와서, 이 IP Address로 Node에 SSH 접속하여 'shutdown' 명령을 수행하는 예제이다.
#!/bin/bash
for ip in $(oc get nodes -o jsonpath='{.items[*].status.addresses[?(@.type=="InternalIP")].address}')
do
echo "reboot node $ip"
ssh -o StrictHostKeyChecking=no core@$ip sudo shutdown -r -t 3
done
'kubernetes' 카테고리의 다른 글
Kubernetes Pod SMTAlignmentError 발생 원인 및 해결 방법 (0) | 2022.07.27 |
---|---|
Kubernetes CLI Command 예제 모음 (0) | 2022.07.27 |
Kubernetes / OCP CNI - Openshift SDN 동작 방식 분석 (0) | 2022.07.27 |
Podman 또는 Docker 명령으로 Image Registry 접속 시 인증(Authentication) 에러 해결 (0) | 2022.07.21 |
Docker Private Registry API 사용법 (CURL 명령 예제) (0) | 2022.07.21 |