Bug 1813167

Summary: [DOC]Command of creating PV and PVC should make some changes
Product: OpenShift Container Platform Reporter: Wenjing Zheng <wzheng>
Component: DocumentationAssignee: Vikram Goyal <vigoyal>
Status: CLOSED EOL QA Contact: Wenjing Zheng <wzheng>
Severity: low Docs Contact: Vikram Goyal <vigoyal>
Priority: low    
Version: 4.3.0CC: aos-bugs, jokerman
Target Milestone: ---   
Target Release: 4.3.z   
Hardware: Unspecified   
OS: Unspecified   
Whiteboard:
Fixed In Version: Doc Type: If docs needed, set a value
Doc Text:
Story Points: ---
Clone Of: Environment:
Last Closed: 2020-11-02 01:24:54 UTC Type: Bug
Regression: --- Mount Type: ---
Documentation: --- CRM:
Verified Versions: Category: ---
oVirt Team: --- RHEL 7.3 requirements from Atomic Host:
Cloudforms Team: --- Target Upstream Version:
Embargoed:

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