-
Bug
-
Resolution: Done
-
Minor
-
rhos-18.0.0
-
None
-
3
-
False
-
-
False
-
?
-
?
-
?
-
?
-
None
-
-
-
Low
(Also in `common/nfv/proc_creating-the-control-plane.adoc` which is using a duplicate set of commands vs reused content.)
In the Procedure step 2 for creating the openstack namespace, there is a command that makes use of `yq` which is a non-standard command on RHEL and other systems. The use of `jq` is much more prevalent, and should be the preferred usage.
Current
$ oc get namespace openstack -o yaml | yq '.metadata.labels' { "kubernetes.io/metadata.name": "openstack", "pod-security.kubernetes.io/enforce": "privileged", "security.openshift.io/scc.podSecurityLabelSync": "false" }
Suggest
$ oc get namespace openstack -ojsonpath='{.metadata.labels}' | jq { "kubernetes.io/metadata.name": "openstack", "pod-security.kubernetes.io/enforce": "privileged", "security.openshift.io/scc.podSecurityLabelSync": "false" }