From 501e31433b4e950fa0af35ac6961fc3988c4d27f Mon Sep 17 00:00:00 2001 From: Chinmayi Chandrasekar Date: Mon, 5 Jul 2021 15:37:41 +0530 Subject: [PATCH] BZ1932466: added missing namespace for PVC --- ...lation-registry-storage-block-recreate-rollout.adoc | 10 ++++++---- 1 file changed, 6 insertions(+), 4 deletions(-) diff --git a/modules/installation-registry-storage-block-recreate-rollout.adoc b/modules/installation-registry-storage-block-recreate-rollout.adoc index a40e3f8fd6..44aba08a36 100644 --- a/modules/installation-registry-storage-block-recreate-rollout.adoc +++ b/modules/installation-registry-storage-block-recreate-rollout.adoc @@ -45,16 +45,18 @@ kind: PersistentVolumeClaim apiVersion: v1 metadata: name: image-registry-storage <1> + namespace: openshift-image-registry <2> spec: accessModes: - - ReadWriteOnce <2> + - ReadWriteOnce <3> resources: requests: - storage: 100Gi <3> + storage: 100Gi <4> ---- <1> A unique name that represents the `PersistentVolumeClaim` object. -<2> The access mode of the PersistentVolumeClaim. With `ReadWriteOnce`, the volume can be mounted with read and write permissions by a single node. -<3> The size of the PersistentVolumeClaim. +<2> The namespace for the `PersistentVolumeClaim` object, which is `openshift-image-registry`. +<3> The access mode of the persistent volume claim. With `ReadWriteOnce`, the volume can be mounted with read and write permissions by a single node. +<4> The size of the persistent volume claim. .. Create the `PersistentVolumeClaim` object from the file: +