website/docs/user-guide/downward-api
John Mulhausen 869e7de45a Nips/tucks to 1.2 import, image additions, SASS fix for tables and code overflow 2016-03-07 13:05:16 +00:00
..
volume 1.2 additions for user-guide/ 2016-03-07 12:09:02 +00:00
README.md Nips/tucks to 1.2 import, image additions, SASS fix for tables and code overflow 2016-03-07 13:05:16 +00:00
dapi-pod.yaml Moving docs from /vX to /docs; we will use branches for old versions. 2016-02-29 15:17:22 -08:00

README.md

Following this example, you will create a pod with a container that consumes the pod's name and namespace using the downward API.

Step Zero: Prerequisites

This example assumes you have a Kubernetes cluster installed and running, and that you have installed the kubectl command line tool somewhere in your path. Please see the getting started for installation instructions for your platform.

Step One: Create the pod

Containers consume the downward API using environment variables. The downward API allows containers to be injected with the name and namespace of the pod the container is in.

Use the dapi-pod.yaml file to create a Pod with a container that consumes the downward API.

$ kubectl create -f docs/user-guide/downward-api/dapi-pod.yaml

Examine the logs

This pod runs the env command in a container that consumes the downward API. You can grep through the pod logs to see that the pod was injected with the correct values:

$ kubectl logs dapi-test-pod | grep POD_
2015-04-30T20:22:18.568024817Z MY_POD_NAME=dapi-test-pod
2015-04-30T20:22:18.568087688Z MY_POD_NAMESPACE=default
2015-04-30T20:22:18.568092435Z MY_POD_IP=10.0.1.6