Skip to content

Commit 50eee84

Browse files
Merge pull request #34315 from chinmayi-chandrasekar/BZ_1932466_fix
BZ1932466: added missing namespace for PVC
2 parents 2db6b9a + 26602c0 commit 50eee84

File tree

1 file changed

+6
-4
lines changed

1 file changed

+6
-4
lines changed

modules/installation-registry-storage-block-recreate-rollout.adoc

Lines changed: 6 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -45,16 +45,18 @@ kind: PersistentVolumeClaim
4545
apiVersion: v1
4646
metadata:
4747
name: image-registry-storage <1>
48+
namespace: openshift-image-registry <2>
4849
spec:
4950
accessModes:
50-
- ReadWriteOnce <2>
51+
- ReadWriteOnce <3>
5152
resources:
5253
requests:
53-
storage: 100Gi <3>
54+
storage: 100Gi <4>
5455
----
5556
<1> A unique name that represents the `PersistentVolumeClaim` object.
56-
<2> The access mode of the PersistentVolumeClaim. With `ReadWriteOnce`, the volume can be mounted with read and write permissions by a single node.
57-
<3> The size of the PersistentVolumeClaim.
57+
<2> The namespace for the `PersistentVolumeClaim` object, which is `openshift-image-registry`.
58+
<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.
59+
<4> The size of the persistent volume claim.
5860

5961
.. Create the `PersistentVolumeClaim` object from the file:
6062
+

0 commit comments

Comments
 (0)