@@ -37,7 +37,7 @@ Here is the configuration file for the Pod:
37
37
{% include code.html language="yaml" file="dapi-volume.yaml" ghlink="/docs/tasks/inject-data-application/dapi-volume.yaml" %}
38
38
39
39
In the configuration file, you can see that the Pod has a ` downwardAPI ` Volume,
40
- and the Container mounts the Volume at ` /etc ` .
40
+ and the Container mounts the Volume at ` /etc/podinfo ` .
41
41
42
42
Look at the ` items ` array under ` downwardAPI ` . Each element of the array is a
43
43
[ DownwardAPIVolumeFile] ( /docs/api-reference/{{page.version}}/#downwardapivolumefile-v1-core ) .
@@ -88,7 +88,7 @@ kubectl exec -it kubernetes-downwardapi-volume-example -- sh
88
88
In your shell, view the ` labels ` file:
89
89
90
90
``` shell
91
- /# cat /etc/labels
91
+ /# cat /etc/podinfo/ labels
92
92
```
93
93
94
94
The output shows that all of the Pod's labels have been written
@@ -103,19 +103,19 @@ zone="us-est-coast"
103
103
Similarly, view the ` annotations ` file:
104
104
105
105
``` shell
106
- /# cat /etc/annotations
106
+ /# cat /etc/podinfo/ annotations
107
107
```
108
108
109
- View the files in the ` /etc ` directory:
109
+ View the files in the ` /etc/podinfo ` directory:
110
110
111
111
``` shell
112
- /# ls -laR /etc
112
+ /# ls -laR /etc/podinfo
113
113
```
114
114
115
115
In the output, you can see that the ` labels ` and ` annotations ` files
116
116
are in a temporary subdirectory: in this example,
117
- ` ..2982_06_02_21_47_53.299460680 ` . In the ` /etc ` directory, ` ..data ` is
118
- a symbolic link to the temporary subdirectory. Also in the ` /etc ` directory,
117
+ ` ..2982_06_02_21_47_53.299460680 ` . In the ` /etc/podinfo ` directory, ` ..data ` is
118
+ a symbolic link to the temporary subdirectory. Also in the ` /etc/podinfo ` directory,
119
119
` labels ` and ` annotations ` are symbolic links.
120
120
121
121
```
@@ -155,7 +155,7 @@ file for a Pod that has one Container:
155
155
{% include code.html language="yaml" file="dapi-volume-resources.yaml" ghlink="/docs/tasks/inject-data-application/dapi-volume-resources.yaml" %}
156
156
157
157
In the configuration file, you can see that the Pod has a ` downwardAPI ` Volume,
158
- and the Container mounts the Volume at ` /etc ` .
158
+ and the Container mounts the Volume at ` /etc/podinfo ` .
159
159
160
160
Look at the ` items ` array under ` downwardAPI ` . Each element of the array is a
161
161
DownwardAPIVolumeFile.
@@ -179,7 +179,7 @@ kubectl exec -it kubernetes-downwardapi-volume-example-2 -- sh
179
179
In your shell, view the ` cpu_limit ` file:
180
180
181
181
``` shell
182
- /# cat /etc/cpu_limit
182
+ /# cat /etc/podinfo/ cpu_limit
183
183
```
184
184
You can use similar commands to view the ` cpu_request ` , ` mem_limit ` and
185
185
` mem_request ` files.
0 commit comments