Description of problem: https://github.com/openshift/local-storage-operator/blob/master/docs/deploy-with-olm.md#example-usage The command format used to create PVC is incorrect Version-Release number of selected component (if applicable): 4.2 How reproducible: Always Steps to Reproduce: 1.Go to https://github.com/openshift/local-storage-operator/blob/master/docs/deploy-with-olm.md#example-usage and check the steps used to create PVC. Actual results: --- << EOF | oc create -f - kind: PersistentVolumeClaim apiVersion: v1 metadata: name: example-local-claim spec: accessModes: - ReadWriteOnce resources: requests: storage: 100Gi storageClassName: local-sc EOF Expected results: The correct format should be, --- oc create -f - << EOF kind: PersistentVolumeClaim apiVersion: v1 metadata: name: example-local-claim spec: accessModes: - ReadWriteOnce resources: requests: storage: 100Gi storageClassName: local-sc EOF
https://github.com/openshift/local-storage-operator/pull/36
QE have verified that the command is fixed. https://github.com/openshift/local-storage-operator/blob/master/docs/deploy-with-olm.md#example-usage oc create -f - << EOF kind: PersistentVolumeClaim apiVersion: v1 metadata: name: example-local-claim spec: accessModes: - ReadWriteOnce resources: requests: storage: 100Gi storageClassName: local-sc EOF
Move to verified according to #comment 2
Since the problem described in this bug report should be resolved in a recent advisory, it has been closed with a resolution of ERRATA. For information on the advisory, and where to find the updated files, follow the link below. If the solution does not work for you, open a new bug report. https://access.redhat.com/errata/RHBA-2019:2922