From 053a529db7470e44212839e79f58b560a1e1f13c Mon Sep 17 00:00:00 2001 From: saireddyb <107341028+saireddyb@users.noreply.github.com> Date: Fri, 13 Sep 2024 23:41:59 +0530 Subject: [PATCH 1/2] added image volume type in ephemeral volumes Image volume type falls under ephemeral volumes. --- content/en/docs/concepts/storage/ephemeral-volumes.md | 3 +++ 1 file changed, 3 insertions(+) diff --git a/content/en/docs/concepts/storage/ephemeral-volumes.md b/content/en/docs/concepts/storage/ephemeral-volumes.md index f1968dabea..2a3d3196bd 100644 --- a/content/en/docs/concepts/storage/ephemeral-volumes.md +++ b/content/en/docs/concepts/storage/ephemeral-volumes.md @@ -46,12 +46,15 @@ different purposes: [downwardAPI](/docs/concepts/storage/volumes/#downwardapi), [secret](/docs/concepts/storage/volumes/#secret): inject different kinds of Kubernetes data into a Pod +- [image](docs/concepts/storage/volumes/#image): Allows mounting container image files or artifacts, + directly to a Pod. - [CSI ephemeral volumes](#csi-ephemeral-volumes): similar to the previous volume kinds, but provided by special {{< glossary_tooltip text="CSI" term_id="csi" >}} drivers which specifically [support this feature](https://kubernetes-csi.github.io/docs/ephemeral-local-volumes.html) - [generic ephemeral volumes](#generic-ephemeral-volumes), which can be provided by all storage drivers that also support persistent volumes + `emptyDir`, `configMap`, `downwardAPI`, `secret` are provided as [local ephemeral storage](/docs/concepts/configuration/manage-resources-containers/#local-ephemeral-storage). From f04a552825f334af8ed49d9fd6b8d43c1dd83a70 Mon Sep 17 00:00:00 2001 From: saireddyb <107341028+saireddyb@users.noreply.github.com> Date: Sat, 14 Sep 2024 00:01:02 +0530 Subject: [PATCH 2/2] Update ephemeral-volumes.md --- content/en/docs/concepts/storage/ephemeral-volumes.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/content/en/docs/concepts/storage/ephemeral-volumes.md b/content/en/docs/concepts/storage/ephemeral-volumes.md index 2a3d3196bd..ca5c09749e 100644 --- a/content/en/docs/concepts/storage/ephemeral-volumes.md +++ b/content/en/docs/concepts/storage/ephemeral-volumes.md @@ -46,7 +46,7 @@ different purposes: [downwardAPI](/docs/concepts/storage/volumes/#downwardapi), [secret](/docs/concepts/storage/volumes/#secret): inject different kinds of Kubernetes data into a Pod -- [image](docs/concepts/storage/volumes/#image): Allows mounting container image files or artifacts, +- [image](/docs/concepts/storage/volumes/#image): allows mounting container image files or artifacts, directly to a Pod. - [CSI ephemeral volumes](#csi-ephemeral-volumes): similar to the previous volume kinds, but provided by special {{< glossary_tooltip text="CSI" term_id="csi" >}} drivers