You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: README.adoc
+9Lines changed: 9 additions & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -391,6 +391,14 @@ Run the following command to deploy your changes to the {kube} cluster.
391
391
kubectl replace --force -f kubernetes.yaml
392
392
```
393
393
394
+
When this command finishes, wait for the pods to be in the Ready state. Run the following command to view the status of the pods.
395
+
[role='command']
396
+
```
397
+
kubectl get pods
398
+
```
399
+
400
+
When the pods are ready, the output shows `1/1` for READY and `Running` for STATUS.
401
+
394
402
// Static guide instruction
395
403
ifndef::cloud-hosted[]
396
404
@@ -504,6 +512,7 @@ ifdef::cloud-hosted[]
504
512
Update the ***pom.xml*** files so that the ***system.service.root*** and ***inventory.service.root*** properties have the correct ports to access the **system** and **inventory** services.
505
513
506
514
```bash
515
+
cd /home/project/guide-kubernetes-microprofile-config/start
507
516
SYSTEM_NODEPORT=`kubectl get -o jsonpath="{.spec.ports[0].nodePort}" services system-service`
508
517
INVENTORY_NODEPORT=`kubectl get -o jsonpath="{.spec.ports[0].nodePort}" services inventory-service`
509
518
sed -i 's=localhost:31000='"localhost:$SYSTEM_NODEPORT"'=g' inventory/pom.xml
0 commit comments