From f271222cc086ca371cdf18991edec010089d0f8a Mon Sep 17 00:00:00 2001 From: riso <80423931+risograph@users.noreply.github.com> Date: Wed, 15 May 2024 05:37:52 -0700 Subject: [PATCH] docs: change "Mounting volumes" example text (#526) * Change example text Kubernetes does not like it when you use underscores (_) in value names, and fails when using the example text from this tutorial. Changing to a dash makes it so that a user may apply this change without renaming it. Signed-off-by: riso <80423931+risograph@users.noreply.github.com> * Change example text in `/next` Signed-off-by: riso <80423931+risograph@users.noreply.github.com> --------- Signed-off-by: riso <80423931+risograph@users.noreply.github.com> --- docs/src/latest/guide/recipes/overriding-pod-properties.md | 4 ++-- docs/src/next/guide/recipes/overriding-pod-properties.md | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/docs/src/latest/guide/recipes/overriding-pod-properties.md b/docs/src/latest/guide/recipes/overriding-pod-properties.md index a636bd7e..ed67732a 100644 --- a/docs/src/latest/guide/recipes/overriding-pod-properties.md +++ b/docs/src/latest/guide/recipes/overriding-pod-properties.md @@ -89,10 +89,10 @@ spec: name: my-cluster podOverrides: // [!code focus] volumeMounts: // [!code focus] - - name: my_extra_volume // [!code focus] + - name: my-extra-volume // [!code focus] mountPath: /mnt/path // [!code focus] volumes: // [!code focus] - - name: my_extra_volume // [!code focus] + - name: my-extra-volume // [!code focus] emptyDir: {} // [!code focus] ``` diff --git a/docs/src/next/guide/recipes/overriding-pod-properties.md b/docs/src/next/guide/recipes/overriding-pod-properties.md index a636bd7e..ed67732a 100644 --- a/docs/src/next/guide/recipes/overriding-pod-properties.md +++ b/docs/src/next/guide/recipes/overriding-pod-properties.md @@ -89,10 +89,10 @@ spec: name: my-cluster podOverrides: // [!code focus] volumeMounts: // [!code focus] - - name: my_extra_volume // [!code focus] + - name: my-extra-volume // [!code focus] mountPath: /mnt/path // [!code focus] volumes: // [!code focus] - - name: my_extra_volume // [!code focus] + - name: my-extra-volume // [!code focus] emptyDir: {} // [!code focus] ```