[Mock3_2] InternalIP

유유·2023년 1월 31일
0

CKA

목록 보기
2/19

List the InternalIP of all nodes of the cluster. Save the result to a file /root/CKA/node_ips.

Answer should be in the format: InternalIP of controlplaneInternalIP of node01 (in a single line)

https://kubernetes.io/ko/docs/reference/kubectl/cheatsheet/

**template
# 모든 노드의 외부IP를 조회
kubectl get nodes -o jsonpath='{.items[*].status.addresses[?(@.type=="ExternalIP")].address}'

**solve**
kubectl get nodes -o jsonpath='{.items[*].status.addresses[?(@.type=="InternalIP")].address}' > /root/CKA/node_ips

--
기억이 안난다면
kubectl get nodes -o wide 해서 직접 파일에 써버리자
profile
하이

0개의 댓글