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: +