diff --git a/workshop/content/lab1.2_installing.md b/workshop/content/lab1.2_installing.md index f3f18ac..cd3c0f6 100644 --- a/workshop/content/lab1.2_installing.md +++ b/workshop/content/lab1.2_installing.md @@ -67,13 +67,56 @@ Output (sample): ``` NAME READY STATUS RESTARTS AGE -rhsso-operator-xxxxxxxxx-xxxxx 1/1 Running 0 15h +app-ui-1-build 0/1 Completed 0 15h +app-ui-1-deploy 0/1 Completed 0 15h +app-ui-1-xxxxx 2/2 Running 0 15h +boards-1-xxxxx 2/2 Running 0 15h +boards-1-build 0/1 Completed 0 15h +boards-1-deploy 0/1 Completed 0 15h +boards-mongodb-1-deploy 0/1 Completed 0 15h +boards-mongodb-1-xxxxx 2/2 Running 0 15h +context-scraper-1-build 0/1 Completed 0 15h +context-scraper-1-deploy 0/1 Completed 0 15h +context-scraper-1-xxxxx 2/2 Running 0 15h +rhsso-operator-xxxxxxxxx-xxxxx 1/1 Running 0 15h +userprofile-1.0-1-build 0/1 Completed 0 15h +userprofile-xxxxxxxxxx-xxxxx 2/2 Running 0 15h +userprofile-postgresql-1-deploy 0/1 Completed 0 15h +userprofile-postgresql-1-xxxxx 2/2 Running 0 15h ``` -The RH-SSO operator will be used later in the security labs. +
+ +To access the application, you need the endpoint of your load balancer. + +
+ +Retrieve the URL of the load balancer: +
+ +```execute +GATEWAY_URL=$(oc get route istio-ingressgateway -n %username%-istio --template='http://{{.spec.host}}') +echo $GATEWAY_URL +``` + +
+ +Navigate to this URL in a new browser tab. For example: +
+ +``` +http://istio-ingressgateway-userx-istio.apps.cluster-naa-xxxx.naa-xxxx.example.opentlc.com:6443 +```
+You should see the application user interface. Try creating a new board and posting to the shared board. + +For example: + +
+ *Create a new board* + ## Application Code Next we need a local copy of our application code. diff --git a/workshop/content/lab2.3_kiali.md b/workshop/content/lab2.3_kiali.md index b9e27f9..012f032 100644 --- a/workshop/content/lab2.3_kiali.md +++ b/workshop/content/lab2.3_kiali.md @@ -35,7 +35,7 @@ Now let's open the Kiali console. Retrieve the endpoint for Kiali: ```execute -echo $(oc get route kiali -n istio-system --template='https://{{.spec.host}}') +echo $(oc get route kiali -n %username%-istio --template='https://{{.spec.host}}') ``` Output (sample): diff --git a/workshop/content/lab3.3_jaeger.md b/workshop/content/lab3.3_jaeger.md index 911c3ee..6d5afd2 100644 --- a/workshop/content/lab3.3_jaeger.md +++ b/workshop/content/lab3.3_jaeger.md @@ -12,7 +12,7 @@ Open the Jaeger console. Retrieve the endpoint for Jaeger: ```execute -echo $(oc get route jaeger -n istio-system --template='https://{{.spec.host}}') +echo $(oc get route jaeger -n %username%-istio --template='https://{{.spec.host}}') ``` Click 'Allow selected permissions' if prompted to authorized access.