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 controlplane
InternalIP 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 해서 직접 파일에 써버리자