From 459fe875407196a79e45a0aa2a162d5d59542274 Mon Sep 17 00:00:00 2001 From: Jason Hall Date: Sat, 30 Nov 2019 21:49:03 -0500 Subject: [PATCH] Remove readOnly:false from Downward API volume examples (#17661) Downward API volumes are not writeable, even if readOnly:true is set, so including this in the example is potentially confusing for users. --- content/en/examples/pods/inject/dapi-volume-resources.yaml | 1 - content/en/examples/pods/inject/dapi-volume.yaml | 1 - 2 files changed, 2 deletions(-) diff --git a/content/en/examples/pods/inject/dapi-volume-resources.yaml b/content/en/examples/pods/inject/dapi-volume-resources.yaml index ee9677bec4..ecb231e0cf 100644 --- a/content/en/examples/pods/inject/dapi-volume-resources.yaml +++ b/content/en/examples/pods/inject/dapi-volume-resources.yaml @@ -30,7 +30,6 @@ spec: volumeMounts: - name: podinfo mountPath: /etc/podinfo - readOnly: false volumes: - name: podinfo downwardAPI: diff --git a/content/en/examples/pods/inject/dapi-volume.yaml b/content/en/examples/pods/inject/dapi-volume.yaml index e7515afba5..0f0a9f2e5c 100644 --- a/content/en/examples/pods/inject/dapi-volume.yaml +++ b/content/en/examples/pods/inject/dapi-volume.yaml @@ -25,7 +25,6 @@ spec: volumeMounts: - name: podinfo mountPath: /etc/podinfo - readOnly: false volumes: - name: podinfo downwardAPI: