You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
-`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
0 commit comments