k8s-helpers/get_pod_ip

Paddy 2015-07-18 Child:e11b0d402621

0:278dc70f8696 Go to Latest

k8s-helpers/get_pod_ip/Dockerfile

First commit. Let's try and get this working. Basically, just a small container that will find the IP of the current pod in kubernetes.

History
     1.1 --- /dev/null	Thu Jan 01 00:00:00 1970 +0000
     1.2 +++ b/Dockerfile	Sat Jul 18 06:02:52 2015 -0400
     1.3 @@ -0,0 +1,8 @@
     1.4 +FROM busybox
     1.5 +
     1.6 +ADD docker-get_pod_ip /bin/k8s-helpers/get_pod_ip
     1.7 +ADD ca-certificates.crt /etc/ssl/certs/
     1.8 +
     1.9 +WORKDIR /bin/k8s-helpers
    1.10 +
    1.11 +CMD ["get_pod_ip"]