Bug 1731316
| Summary: | Typo in the output of command `oc explain pv.spec.cinder` | ||
|---|---|---|---|
| Product: | OpenShift Container Platform | Reporter: | Liang Xia <lxia> |
| Component: | Storage | Assignee: | Christian Huffman <chuffman> |
| Status: | CLOSED ERRATA | QA Contact: | Qin Ping <piqin> |
| Severity: | low | Docs Contact: | |
| Priority: | low | ||
| Version: | 4.2.0 | CC: | aos-bugs, aos-storage-staff, chaoyang, hekumar, piqin |
| Target Milestone: | --- | ||
| Target Release: | 4.2.0 | ||
| 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: | 2019-10-16 06:30:08 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: | |||
I've submitted a PR [1] to fix this in upstream. [1] https://github.com/kubernetes/kubernetes/pull/80487 Upstream PR has been merged, created [1] to backport this fix in origin. [1] https://github.com/openshift/origin/pull/23534 Checked with below version, the issue still exist. May be the latest build does not contain the fix yet as the PR is merged several hours ago. QE will check again later.
$ rpm -q openshift-clients
openshift-clients-4.2.0-201908151419.git.0.c4dfe25.el7.x86_64
$ oc version --client
Client Version: version.Info{Major:"4", Minor:"2+", GitVersion:"v4.2.0", GitCommit:"c4dfe254f", GitTreeState:"clean", BuildDate:"2019-08-15T18:38:54Z", GoVersion:"go1.12.6", Compiler:"gc", Platform:"linux/amd64"}
$ oc explain pv.spec.cinder
KIND: PersistentVolume
VERSION: v1
RESOURCE: cinder <Object>
DESCRIPTION:
Cinder represents a cinder volume attached and mounted on kubelets host
machine More info:
https://releases.k8s.io/HEAD/examples/mysql-cinder-pd/README.md
Update the bug status based on comment #5 Verified with:
$ oc version
Client Version: version.Info{Major:"4", Minor:"2+", GitVersion:"v4.2.0", GitCommit:"b985ea310", GitTreeState:"clean", BuildDate:"2019-08-26T22:29:09Z", GoVersion:"go1.12.8", Compiler:"gc", Platform:"linux/amd64"}
Server Version: version.Info{Major:"1", Minor:"14+", GitVersion:"v1.14.0+4f0c084", GitCommit:"4f0c084", GitTreeState:"clean", BuildDate:"2019-08-26T15:08:39Z", GoVersion:"go1.12.6", Compiler:"gc", Platform:"linux/amd64"}
OpenShift Version: 4.2.0-0.nightly-2019-08-26-202352
$ oc explain pv
KIND: PersistentVolume
VERSION: v1
DESCRIPTION:
PersistentVolume (PV) is a storage resource provisioned by an
administrator. It is analogous to a node. More info:
https://kubernetes.io/docs/concepts/storage/persistent-volumes
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 |
Description of problem: Typo in the output of command `oc explain pv.spec.cinder`. --- $ oc explain pv.spec.cinder KIND: PersistentVolume VERSION: v1 RESOURCE: cinder <Object> DESCRIPTION: Cinder represents a cinder volume attached and mounted on kubelets host machine More info: https://releases.k8s.io/HEAD/examples/mysql-cinder-pd/README.md Missing a "." before "More info:". Version-Release number of selected component (if applicable): 4.2.0-0.nightly-2019-07-18-003042 Client Version: version.Info{Major:"4", Minor:"2+", GitVersion:"v4.2.0", GitCommit:"bbfcbc8ac", GitTreeState:"clean", BuildDate:"2019-07-18T06:28:31Z", GoVersion:"go1.12.6", Compiler:"gc", Platform:"linux/amd64"} Server Version: version.Info{Major:"1", Minor:"14+", GitVersion:"v1.14.0+04ab1f0", GitCommit:"04ab1f0", GitTreeState:"clean", BuildDate:"2019-07-17T19:07:51Z", GoVersion:"go1.12.6", Compiler:"gc", Platform:"linux/amd64"} How reproducible: Always Steps to Reproduce: 1.oc explain pv.spec.cinder Actual results: Check in description. Expected results: No typo.