Public ungleich kubernetes repository
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
from kubernetes import client, config |
|
|
|
config.load_kube_config() |
|
|
|
v1=client.CoreV1Api() |
|
print("Listing pods with their IPs:") |
|
ret = v1.list_pod_for_all_namespaces(watch=False) |
|
for i in ret.items: |
|
print("%s\t%s\t%s" % (i.status.pod_ip, i.metadata.namespace, i.metadata.name))
|
|
|