2017-02-16 20:59:54 +00:00
|
|
|
|
---
|
2017-06-08 19:12:52 +00:00
|
|
|
|
title: Expose Pod Information to Containers Through Files
|
2017-02-16 20:59:54 +00:00
|
|
|
|
---
|
|
|
|
|
|
|
|
|
|
{% capture overview %}
|
|
|
|
|
|
|
|
|
|
This page shows how a Pod can use a DownwardAPIVolumeFile to expose information
|
|
|
|
|
about itself to Containers running in the Pod. A DownwardAPIVolumeFile can expose
|
|
|
|
|
Pod fields and Container fields.
|
|
|
|
|
|
|
|
|
|
{% endcapture %}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
{% capture prerequisites %}
|
|
|
|
|
|
|
|
|
|
{% include task-tutorial-prereqs.md %}
|
|
|
|
|
|
|
|
|
|
{% endcapture %}
|
|
|
|
|
|
|
|
|
|
{% capture steps %}
|
|
|
|
|
|
|
|
|
|
## The Downward API
|
|
|
|
|
|
|
|
|
|
There are two ways to expose Pod and Container fields to a running Container:
|
|
|
|
|
|
|
|
|
|
* [Environment variables](/docs/tasks/configure-pod-container/environment-variable-expose-pod-information/)
|
|
|
|
|
* DownwardAPIVolumeFiles
|
|
|
|
|
|
|
|
|
|
Together, these two ways of exposing Pod and Container fields are called the
|
|
|
|
|
*Downward API*.
|
|
|
|
|
|
2017-06-08 19:12:52 +00:00
|
|
|
|
## Store Pod fields
|
2017-02-16 20:59:54 +00:00
|
|
|
|
|
|
|
|
|
In this exercise, you create a Pod that has one Container.
|
|
|
|
|
Here is the configuration file for the Pod:
|
|
|
|
|
|
2017-05-04 17:43:17 +00:00
|
|
|
|
{% include code.html language="yaml" file="dapi-volume.yaml" ghlink="/docs/tasks/inject-data-application/dapi-volume.yaml" %}
|
2017-02-16 20:59:54 +00:00
|
|
|
|
|
|
|
|
|
In the configuration file, you can see that the Pod has a `downwardAPI` Volume,
|
|
|
|
|
and the Container mounts the Volume at `/etc`.
|
|
|
|
|
|
|
|
|
|
Look at the `items` array under `downwardAPI`. Each element of the array is a
|
2017-07-25 16:37:19 +00:00
|
|
|
|
[DownwardAPIVolumeFile](/docs/resources-reference/{{page.version}}/#downwardapivolumefile-v1-core).
|
2017-02-16 20:59:54 +00:00
|
|
|
|
The first element specifies that the value of the Pod's
|
|
|
|
|
`metadata.labels` field should be stored in a file named `labels`.
|
2017-07-25 16:37:19 +00:00
|
|
|
|
The second element specifies that the value of the Pod's `annotations`
|
2017-02-16 20:59:54 +00:00
|
|
|
|
field should be stored in a file named `annotations`.
|
|
|
|
|
|
2017-08-17 23:17:32 +00:00
|
|
|
|
**Note:** The fields in this example are Pod fields. They are not
|
2017-02-16 20:59:54 +00:00
|
|
|
|
fields of the Container in the Pod.
|
2017-08-17 23:17:32 +00:00
|
|
|
|
{: .note}
|
2017-02-16 20:59:54 +00:00
|
|
|
|
|
|
|
|
|
Create the Pod:
|
|
|
|
|
|
|
|
|
|
```shell
|
2017-05-18 03:14:09 +00:00
|
|
|
|
kubectl create -f https://k8s.io/docs/tasks/inject-data-application/dapi-volume.yaml
|
2017-02-16 20:59:54 +00:00
|
|
|
|
```
|
|
|
|
|
|
|
|
|
|
Verify that Container in the Pod is running:
|
|
|
|
|
|
|
|
|
|
```shell
|
|
|
|
|
kubectl get pods
|
|
|
|
|
```
|
|
|
|
|
|
|
|
|
|
View the Container's logs:
|
|
|
|
|
|
|
|
|
|
```shell
|
|
|
|
|
kubectl logs kubernetes-downwardapi-volume-example
|
|
|
|
|
```
|
|
|
|
|
|
|
|
|
|
The output shows the contents of the `labels` file and the `annotations` file:
|
|
|
|
|
|
|
|
|
|
```shell
|
|
|
|
|
cluster="test-cluster1"
|
|
|
|
|
rack="rack-22"
|
|
|
|
|
zone="us-est-coast"
|
|
|
|
|
|
|
|
|
|
build="two"
|
|
|
|
|
builder="john-doe"
|
|
|
|
|
```
|
|
|
|
|
|
|
|
|
|
Get a shell into the Container that is running in your Pod:
|
|
|
|
|
|
|
|
|
|
```
|
|
|
|
|
kubectl exec -it kubernetes-downwardapi-volume-example -- sh
|
|
|
|
|
```
|
|
|
|
|
|
|
|
|
|
In your shell, view the `labels` file:
|
|
|
|
|
|
|
|
|
|
```shell
|
|
|
|
|
/# cat /etc/labels
|
|
|
|
|
```
|
|
|
|
|
|
|
|
|
|
The output shows that all of the Pod's labels have been written
|
|
|
|
|
to the `labels` file:
|
|
|
|
|
|
|
|
|
|
```shell
|
|
|
|
|
cluster="test-cluster1"
|
|
|
|
|
rack="rack-22"
|
|
|
|
|
zone="us-est-coast"
|
|
|
|
|
```
|
|
|
|
|
|
|
|
|
|
Similarly, view the `annotations` file:
|
|
|
|
|
|
|
|
|
|
```shell
|
|
|
|
|
/# cat /etc/annotations
|
|
|
|
|
```
|
|
|
|
|
|
|
|
|
|
View the files in the `/etc` directory:
|
|
|
|
|
|
|
|
|
|
```shell
|
|
|
|
|
/# ls -laR /etc
|
|
|
|
|
```
|
|
|
|
|
|
|
|
|
|
In the output, you can see that the `labels` and `annotations` files
|
|
|
|
|
are in a temporary subdirectory: in this example,
|
|
|
|
|
`..2982_06_02_21_47_53.299460680`. In the `/etc` directory, `..data` is
|
|
|
|
|
a symbolic link to the temporary subdirectory. Also in the `/etc` directory,
|
|
|
|
|
`labels` and `annotations` are symbolic links.
|
|
|
|
|
|
|
|
|
|
```
|
|
|
|
|
drwxr-xr-x ... Feb 6 21:47 ..2982_06_02_21_47_53.299460680
|
|
|
|
|
lrwxrwxrwx ... Feb 6 21:47 ..data -> ..2982_06_02_21_47_53.299460680
|
|
|
|
|
lrwxrwxrwx ... Feb 6 21:47 annotations -> ..data/annotations
|
|
|
|
|
lrwxrwxrwx ... Feb 6 21:47 labels -> ..data/labels
|
|
|
|
|
|
|
|
|
|
/etc/..2982_06_02_21_47_53.299460680:
|
|
|
|
|
total 8
|
|
|
|
|
-rw-r--r-- ... Feb 6 21:47 annotations
|
|
|
|
|
-rw-r--r-- ... Feb 6 21:47 labels
|
|
|
|
|
```
|
|
|
|
|
|
|
|
|
|
Using symbolic links enables dynamic atomic refresh of the metadata; updates are
|
|
|
|
|
written to a new temporary directory, and the `..data` symlink is updated
|
|
|
|
|
atomically using
|
|
|
|
|
[rename(2)](http://man7.org/linux/man-pages/man2/rename.2.html).
|
|
|
|
|
|
|
|
|
|
Exit the shell:
|
|
|
|
|
|
|
|
|
|
```shell
|
|
|
|
|
/# exit
|
|
|
|
|
```
|
|
|
|
|
|
2017-06-08 19:12:52 +00:00
|
|
|
|
## Store Container fields
|
2017-02-16 20:59:54 +00:00
|
|
|
|
|
2017-07-25 16:37:19 +00:00
|
|
|
|
The preceding exercise, you stored Pod fields in a DownwardAPIVolumeFile.
|
2017-02-16 20:59:54 +00:00
|
|
|
|
In this next exercise, you store Container fields. Here is the configuration
|
|
|
|
|
file for a Pod that has one Container:
|
|
|
|
|
|
2017-05-04 17:43:17 +00:00
|
|
|
|
{% include code.html language="yaml" file="dapi-volume-resources.yaml" ghlink="/docs/tasks/inject-data-application/dapi-volume-resources.yaml" %}
|
2017-02-16 20:59:54 +00:00
|
|
|
|
|
|
|
|
|
In the configuration file, you can see that the Pod has a `downwardAPI` Volume,
|
|
|
|
|
and the Container mounts the Volume at `/etc`.
|
|
|
|
|
|
|
|
|
|
Look at the `items` array under `downwardAPI`. Each element of the array is a
|
|
|
|
|
DownwardAPIVolumeFile.
|
|
|
|
|
|
|
|
|
|
The first element specifies that in the Container named `client-container`,
|
2017-07-25 16:37:19 +00:00
|
|
|
|
the value of the `limits.cpu` field
|
2017-04-21 03:46:46 +00:00
|
|
|
|
should be stored in a file named `cpu_limit`.
|
2017-02-16 20:59:54 +00:00
|
|
|
|
|
|
|
|
|
Create the Pod:
|
|
|
|
|
|
|
|
|
|
```shell
|
2017-05-18 03:14:09 +00:00
|
|
|
|
kubectl create -f https://k8s.io/docs/tasks/inject-data-application/dapi-volume-resources.yaml
|
2017-02-16 20:59:54 +00:00
|
|
|
|
```
|
|
|
|
|
|
|
|
|
|
Get a shell into the Container that is running in your Pod:
|
|
|
|
|
|
|
|
|
|
```
|
|
|
|
|
kubectl exec -it kubernetes-downwardapi-volume-example-2 -- sh
|
|
|
|
|
```
|
|
|
|
|
|
|
|
|
|
In your shell, view the `cpu_limit` file:
|
|
|
|
|
|
|
|
|
|
```shell
|
|
|
|
|
/# cat /etc/cpu_limit
|
|
|
|
|
```
|
|
|
|
|
You can use similar commands to view the `cpu_request`, `mem_limit` and
|
|
|
|
|
`mem_request` files.
|
|
|
|
|
|
|
|
|
|
{% endcapture %}
|
|
|
|
|
|
|
|
|
|
{% capture discussion %}
|
|
|
|
|
|
|
|
|
|
## Capabilities of the Downward API
|
|
|
|
|
|
|
|
|
|
The following information is available to Containers through environment
|
|
|
|
|
variables and DownwardAPIVolumeFiles:
|
|
|
|
|
|
2017-09-09 00:37:19 +00:00
|
|
|
|
* The Node’s name
|
|
|
|
|
* The Node's IP
|
2017-02-16 20:59:54 +00:00
|
|
|
|
* The Pod’s name
|
|
|
|
|
* The Pod’s namespace
|
|
|
|
|
* The Pod’s IP address
|
|
|
|
|
* The Pod’s service account name
|
2017-07-05 07:53:57 +00:00
|
|
|
|
* The Pod’s UID
|
2017-02-16 20:59:54 +00:00
|
|
|
|
* A Container’s CPU limit
|
2017-09-09 00:37:19 +00:00
|
|
|
|
* A Container’s CPU request
|
2017-02-16 20:59:54 +00:00
|
|
|
|
* A Container’s memory limit
|
|
|
|
|
* A Container’s memory request
|
|
|
|
|
|
|
|
|
|
In addition, the following information is available through
|
|
|
|
|
DownwardAPIVolumeFiles.
|
|
|
|
|
|
|
|
|
|
* The Pod's labels
|
|
|
|
|
* The Pod's annotations
|
|
|
|
|
|
2017-08-17 23:17:32 +00:00
|
|
|
|
**Note:** If CPU and memory limits are not specified for a Container, the
|
2017-02-16 20:59:54 +00:00
|
|
|
|
Downward API defaults to the node allocatable value for CPU and memory.
|
2017-08-17 23:17:32 +00:00
|
|
|
|
{: .note}
|
2017-02-16 20:59:54 +00:00
|
|
|
|
|
2017-06-08 19:12:52 +00:00
|
|
|
|
## Project keys to specific paths and file permissions
|
2017-02-16 20:59:54 +00:00
|
|
|
|
|
|
|
|
|
You can project keys to specific paths and specific permissions on a per-file
|
|
|
|
|
basis. For more information, see
|
2017-04-19 17:56:47 +00:00
|
|
|
|
[Secrets](/docs/concepts/configuration/secret/).
|
2017-02-16 20:59:54 +00:00
|
|
|
|
|
|
|
|
|
## Motivation for the Downward API
|
|
|
|
|
|
|
|
|
|
It is sometimes useful for a Container to have information about itself, without
|
|
|
|
|
being overly coupled to Kubernetes. The Downward API allows containers to consume
|
|
|
|
|
information about themselves or the cluster without using the Kubernetes client
|
|
|
|
|
or API server.
|
|
|
|
|
|
|
|
|
|
An example is an existing application that assumes a particular well-known
|
|
|
|
|
environment variable holds a unique identifier. One possibility is to wrap the
|
|
|
|
|
application, but that is tedious and error prone, and it violates the goal of low
|
|
|
|
|
coupling. A better option would be to use the Pod's name as an identifier, and
|
|
|
|
|
inject the Pod's name into the well-known environment variable.
|
|
|
|
|
|
|
|
|
|
{% endcapture %}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
{% capture whatsnext %}
|
|
|
|
|
|
2017-07-25 16:37:19 +00:00
|
|
|
|
* [PodSpec](/docs/resources-reference/{{page.version}}/#podspec-v1-core)
|
|
|
|
|
* [Volume](/docs/resources-reference/{{page.version}}/#volume-v1-core)
|
|
|
|
|
* [DownwardAPIVolumeSource](/docs/resources-reference/{{page.version}}/#downwardapivolumesource-v1-core)
|
|
|
|
|
* [DownwardAPIVolumeFile](/docs/resources-reference/{{page.version}}/#downwardapivolumefile-v1-core)
|
|
|
|
|
* [ResourceFieldSelector](/docs/resources-reference/{{page.version}}/#resourcefieldselector-v1-core)
|
2017-02-16 20:59:54 +00:00
|
|
|
|
|
|
|
|
|
{% endcapture %}
|
|
|
|
|
|
|
|
|
|
{% include templates/task.md %}
|
|
|
|
|
|