Created
December 14, 2017 01:48
-
-
Save ksexton/ad4a0a6319c0ccaa8195d93b10a5d99d to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
root@kubernetes:~# kubectl get nodes -o json | jq '.items[].metadata.annotations' | |
{ | |
"flannel.alpha.coreos.com/backend-data": "null", | |
"flannel.alpha.coreos.com/backend-type": "host-gw", | |
"flannel.alpha.coreos.com/kube-subnet-manager": "true", | |
"flannel.alpha.coreos.com/public-ip": "192.168.1.20", | |
"node.alpha.kubernetes.io/ttl": "0", | |
"volumes.kubernetes.io/controller-managed-attach-detach": "true" | |
} | |
{ | |
"flannel.alpha.coreos.com/backend-data": "null", | |
"flannel.alpha.coreos.com/backend-type": "host-gw", | |
"flannel.alpha.coreos.com/kube-subnet-manager": "true", | |
"flannel.alpha.coreos.com/public-ip": "10.0.0.2", | |
"node.alpha.kubernetes.io/ttl": "0", | |
"volumes.kubernetes.io/controller-managed-attach-detach": "true" | |
} | |
{ | |
"flannel.alpha.coreos.com/backend-data": "null", | |
"flannel.alpha.coreos.com/backend-type": "host-gw", | |
"flannel.alpha.coreos.com/kube-subnet-manager": "true", | |
"flannel.alpha.coreos.com/public-ip": "10.0.0.3", | |
"node.alpha.kubernetes.io/ttl": "0", | |
"volumes.kubernetes.io/controller-managed-attach-detach": "true" | |
} | |
{ | |
"flannel.alpha.coreos.com/backend-data": "null", | |
"flannel.alpha.coreos.com/backend-type": "host-gw", | |
"flannel.alpha.coreos.com/kube-subnet-manager": "true", | |
"flannel.alpha.coreos.com/public-ip": "10.0.0.4", | |
"node.alpha.kubernetes.io/ttl": "0", | |
"volumes.kubernetes.io/controller-managed-attach-detach": "true" | |
} | |
root@kubernetes:~# |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment