Bug 1813167 - [DOC]Command of creating PV and PVC should make some changes
Summary: [DOC]Command of creating PV and PVC should make some changes
Keywords:
Status: CLOSED EOL
Alias: None
Product: OpenShift Container Platform
Classification: Red Hat
Component: Documentation
Version: 4.3.0
Hardware: Unspecified
OS: Unspecified
low
low
Target Milestone: ---
: 4.3.z
Assignee: Vikram Goyal
QA Contact: Wenjing Zheng
Vikram Goyal
URL:
Whiteboard:
Depends On:
Blocks:
TreeView+ depends on / blocked
 
Reported: 2020-03-13 06:30 UTC by Wenjing Zheng
Modified: 2020-11-02 01:24 UTC (History)
2 users (show)

Fixed In Version:
Doc Type: If docs needed, set a value
Doc Text:
Clone Of:
Environment:
Last Closed: 2020-11-02 01:24:54 UTC
Target Upstream Version:
Embargoed:


Attachments (Terms of Use)

Description Wenjing Zheng 2020-03-13 06:30:29 UTC
Document URL: 
https://docs.openshift.com/container-platform/4.3/installing/installing_vsphere/installing-vsphere.html#registry-configuring-storage-vsphere_installing-vsphere

Section Number and Name: 
The command of creating PV and PVC,should be like below:
oc create -f - <<EOF
{
  "apiVersion": "v1",
  "kind": "PersistentVolume",
  "metadata": {
    "name": "registry-pv-2"
  },
  "spec": {
    "capacity": {
        "storage": "100Gi"
    },
    "accessModes": [ "ReadWriteOnce" ],
    "nfs": {
        "path": "/",
        "server": "172.30.21.161"
    },
    "persistentVolumeReclaimPolicy": "Retain"
  }
}
EOF


pvc template:
oc create -f - <<EOF
{
    "apiVersion": "v1",
    "kind": "PersistentVolumeClaim",
    "metadata": {
        "name": "nfsc"
    },
    "spec": {
        "accessModes": [ "ReadWriteOnce" ],
        "resources": {
            "requests": {
                "storage": "1Gi"
            }
        }
    }
}
EOF

Describe the issue: 

Suggestions for improvement: 

Additional information:

Comment 2 Vikram Goyal 2020-11-02 01:24:54 UTC
OCP 4.2 and 4.3 are EOL after OCP 4.5 and 4.6 GA respectively.

This is a notification that this bug is being CLOSED as EOL as per the previous comment on this bug.

See my announcement email sent a week ago here [2].

If you have a customer case with a support exception or if you think this issue still applies on 4.4+, please reopen and include those details. When reopening, please change the reported version to 4.4+.

[1]: https://access.redhat.com/support/policy/updates/openshift
[2]: http://post-office.corp.redhat.com/archives/openshift-sme/2020-October/msg00826.html


Note You need to log in before you can comment on or make changes to this bug.