-
Bug
-
Resolution: Unresolved
-
Minor
-
DO180 - RHOCP4.18-en-2-20251021
-
None
-
False
-
-
False
-
-
-
en-US (English)
Please fill in the following information:
| URL: | |
| Reporter RHNID: | |
| Section Title: |
Issue description
Typo in book
Steps to reproduce:
Generate PDF. go to Exercise 3.4 step 9.1
9.1. Identify the IP address of the rhel9-mysql pod.
[student@workstation ~]$ MYSQL_IP=$(oc get pods rhel9-mysql -
o=jsonpath='{.status.podIP}') && echo $MYSQL_IP
The command has a line break that is not escaped.
Workaround:
Write the command in one single line:
MYSQL_IP=$(oc get pods rhel9-mysql -o=jsonpath='{.status.podIP}') && echo $MYSQL_IP
Expected result: