Skip to content

Commit f31a752

Browse files
improve pv storage task
Co-authored-by: Tim Bannister <[email protected]> Co-authored-by: Gulcan Topcu <[email protected]>
1 parent ce8a338 commit f31a752

File tree

3 files changed

+195
-14
lines changed

3 files changed

+195
-14
lines changed

content/en/docs/tasks/configure-pod-container/configure-persistent-volume-storage.md

+163-13
Original file line numberDiff line numberDiff line change
@@ -191,7 +191,7 @@ Create the Pod:
191191
kubectl apply -f https://k8s.io/examples/pods/storage/pv-pod.yaml
192192
```
193193

194-
Verify that the container in the Pod is running;
194+
Verify that the container in the Pod is running:
195195

196196
```shell
197197
kubectl get pod task-pv-pod
@@ -226,10 +226,168 @@ use storage from a PersistentVolumeClaim.
226226

227227
## Clean up
228228

229-
Delete the Pod, the PersistentVolumeClaim and the PersistentVolume:
229+
Delete the Pod:
230230

231231
```shell
232232
kubectl delete pod task-pv-pod
233+
```
234+
235+
## Mounting the same PersistentVolume in two places
236+
237+
You have understood how to create a PersistentVolume & PersistentVolumeClaim, and how to mount
238+
the volume to a single location in a container. Let's explore how you can mount the same PersistentVolume
239+
at two different locations in a container. Below is an example:
240+
241+
{{% code_sample file="pods/storage/pv-duplicate.yaml" %}}
242+
243+
Here:
244+
245+
- `subPath`: This field allows specific files or directories from the mounted PersistentVolume to be exposed at
246+
different locations within the container. In this example:
247+
- `subPath: html` mounts the html directory.
248+
- `subPath: nginx.conf` mounts a specific file, nginx.conf.
249+
250+
Since the first subPath is `html`, an `html` directory has to be created within `/mnt/data/`
251+
on the node.
252+
253+
The second subPath `nginx.conf` means that a file within the `/mnt/data/` directory will be used. No other directory
254+
needs to be created.
255+
256+
Two volume mounts will be made on your nginx container:
257+
258+
- `/usr/share/nginx/html` for the static website
259+
- `/etc/nginx/nginx.conf` for the default config
260+
261+
### Move the index.html file on your Node to a new folder
262+
263+
The `index.html` file mentioned here refers to the one created in the "[Create an index.html file on your Node](#create-an-index-html-file-on-your-node)" section.
264+
265+
Open a shell to the single Node in your cluster. How you open a shell depends on how you set up your cluster.
266+
For example, if you are using Minikube, you can open a shell to your Node by entering `minikube ssh`.
267+
268+
Create a `/mnt/data/html` directory:
269+
270+
```shell
271+
# This assumes that your Node uses "sudo" to run commands
272+
# as the superuser
273+
sudo mkdir /mnt/data/html
274+
```
275+
276+
Move index.html into the directory:
277+
278+
```shell
279+
# Move index.html from its current location to the html sub-directory
280+
sudo mv /mnt/data/index.html html
281+
```
282+
283+
### Create a new nginx.conf file
284+
285+
{{% code_sample file="pods/storage/nginx.conf" %}}
286+
287+
This is a modified version of the default `nginx.conf` file. Here, the default `keepalive_timeout` has been
288+
modified to `60`
289+
290+
Create the nginx.conf file:
291+
292+
```shell
293+
cat <<EOF > /mnt/data/nginx.conf
294+
user nginx;
295+
worker_processes auto;
296+
error_log /var/log/nginx/error.log notice;
297+
pid /var/run/nginx.pid;
298+
299+
events {
300+
worker_connections 1024;
301+
}
302+
303+
http {
304+
include /etc/nginx/mime.types;
305+
default_type application/octet-stream;
306+
307+
log_format main '\$remote_addr - \$remote_user [\$time_local] "\$request" '
308+
'\$status \$body_bytes_sent "\$http_referer" '
309+
'"\$http_user_agent" "\$http_x_forwarded_for"';
310+
311+
access_log /var/log/nginx/access.log main;
312+
313+
sendfile on;
314+
#tcp_nopush on;
315+
316+
keepalive_timeout 60;
317+
318+
#gzip on;
319+
320+
include /etc/nginx/conf.d/*.conf;
321+
}
322+
EOF
323+
```
324+
325+
### Create a Pod
326+
327+
Here we will create a pod that uses the existing persistentVolume and persistentVolumeClaim.
328+
However, the pod mounts only a specific file, `nginx.conf`, and directory, `html`, to the container.
329+
330+
Create the Pod:
331+
332+
```shell
333+
kubectl apply -f https://k8s.io/examples/pods/storage/pv-duplicate.yaml
334+
```
335+
336+
Verify that the container in the Pod is running:
337+
338+
```shell
339+
kubectl get pod test
340+
```
341+
342+
Get a shell to the container running in your Pod:
343+
344+
```shell
345+
kubectl exec -it test -- /bin/bash
346+
```
347+
348+
In your shell, verify that nginx is serving the `index.html` file from the
349+
hostPath volume:
350+
351+
```shell
352+
# Be sure to run these 3 commands inside the root shell that comes from
353+
# running "kubectl exec" in the previous step
354+
apt update
355+
apt install curl
356+
curl http://localhost/
357+
```
358+
359+
The output shows the text that you wrote to the `index.html` file on the
360+
hostPath volume:
361+
362+
```
363+
Hello from Kubernetes storage
364+
```
365+
366+
In your shell, also verify that nginx is serving the `nginx.conf` file from the
367+
hostPath volume:
368+
369+
```shell
370+
# Be sure to run these commands inside the root shell that comes from
371+
# running "kubectl exec" in the previous step
372+
cat /etc/nginx/nginx.conf | grep keepalive_timeout
373+
```
374+
375+
The output shows the modified text that you wrote to the `nginx.conf` file on the
376+
hostPath volume:
377+
378+
```
379+
keepalive_timeout 60;
380+
```
381+
382+
If you see these messages, you have successfully configured a Pod to
383+
use a specific file and directory in a storage from a PersistentVolumeClaim.
384+
385+
## Clean up
386+
387+
Delete the Pod:
388+
389+
```shell
390+
kubectl delete pod test
233391
kubectl delete pvc task-pv-claim
234392
kubectl delete pv task-pv-volume
235393
```
@@ -242,21 +400,13 @@ In the shell on your Node, remove the file and directory that you created:
242400
```shell
243401
# This assumes that your Node uses "sudo" to run commands
244402
# as the superuser
245-
sudo rm /mnt/data/index.html
403+
sudo rm /mnt/data/html/index.html
404+
sudo rm /mnt/data/nginx.conf
246405
sudo rmdir /mnt/data
247406
```
248407

249408
You can now close the shell to your Node.
250409

251-
## Mounting the same persistentVolume in two places
252-
253-
{{% code_sample file="pods/storage/pv-duplicate.yaml" %}}
254-
255-
You can perform 2 volume mounts on your nginx container:
256-
257-
- `/usr/share/nginx/html` for the static website
258-
- `/etc/nginx/nginx.conf` for the default config
259-
260410
<!-- discussion -->
261411

262412
## Access control
@@ -299,4 +449,4 @@ PersistentVolume are not present on the Pod resource itself.
299449
* [PersistentVolume](/docs/reference/generated/kubernetes-api/{{< param "version" >}}/#persistentvolume-v1-core)
300450
* [PersistentVolumeSpec](/docs/reference/generated/kubernetes-api/{{< param "version" >}}/#persistentvolumespec-v1-core)
301451
* [PersistentVolumeClaim](/docs/reference/generated/kubernetes-api/{{< param "version" >}}/#persistentvolumeclaim-v1-core)
302-
* [PersistentVolumeClaimSpec](/docs/reference/generated/kubernetes-api/{{< param "version" >}}/#persistentvolumeclaimspec-v1-core)
452+
* [PersistentVolumeClaimSpec](/docs/reference/generated/kubernetes-api/{{< param "version" >}}/#persistentvolumeclaimspec-v1-core)
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,31 @@
1+
user nginx;
2+
worker_processes auto;
3+
4+
error_log /var/log/nginx/error.log notice;
5+
pid /var/run/nginx.pid;
6+
7+
8+
events {
9+
worker_connections 1024;
10+
}
11+
12+
13+
http {
14+
include /etc/nginx/mime.types;
15+
default_type application/octet-stream;
16+
17+
log_format main '$remote_addr - $remote_user [$time_local] "$request" '
18+
'$status $body_bytes_sent "$http_referer" '
19+
'"$http_user_agent" "$http_x_forwarded_for"';
20+
21+
access_log /var/log/nginx/access.log main;
22+
23+
sendfile on;
24+
#tcp_nopush on;
25+
26+
keepalive_timeout 60;
27+
28+
#gzip on;
29+
30+
include /etc/nginx/conf.d/*.conf;
31+
}

content/en/examples/pods/storage/pv-duplicate.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -19,4 +19,4 @@ spec:
1919
volumes:
2020
- name: config
2121
persistentVolumeClaim:
22-
claimName: test-nfs-claim
22+
claimName: task-pv-storage

0 commit comments

Comments
 (0)