command to output map of cluster / node / public IPs

1/23/2018

Is there a way (without writing a script to join the data between kubectl and aws cli) to show the mappings between the cluster, private, public ips, load balancer name?

kubectl get pods -o wide 

Shows the cluster IP, and the AWS private IP.

kubectl get nodes -o wide

Shows the node name to public IP mapping

kubectl get services -o wide

Shows the cluster IP to ELB name mapping

But would be handy to join these with the addition of the ELB name (if it exists) into a single command.

-- Geremy
amazon-web-services
kops
kubernetes

1 Answer

1/24/2018

Not sure if this is what you need, but you can get information about several resources at the same time

kubectl get pod,svc,node -o wide
-- Jose Armesto
Source: StackOverflow