From 8132259cb18a903da3bd1225e14d66d551866ec2 Mon Sep 17 00:00:00 2001 From: Andy Krohg Date: Mon, 2 May 2022 09:42:25 -0400 Subject: [PATCH] Fix nodejs image stream tag --- workshop/content/lab1.3_deploymsa.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/workshop/content/lab1.3_deploymsa.md b/workshop/content/lab1.3_deploymsa.md index 482cf5b..633ee29 100644 --- a/workshop/content/lab1.3_deploymsa.md +++ b/workshop/content/lab1.3_deploymsa.md @@ -44,7 +44,7 @@ Deploy the boards service: ```execute oc new-app -f ./config/app/boards-fromsource.yaml \ -p APPLICATION_NAME=boards \ - -p NODEJS_VERSION_TAG=16-ubi \ + -p NODEJS_VERSION_TAG=16-ubi8 \ -p GIT_URI=https://github.com/RedHatGov/service-mesh-workshop-code.git \ -p GIT_BRANCH=workshop-stable \ -p DATABASE_SERVICE_NAME=boards-mongodb \ @@ -59,7 +59,7 @@ Deploy the context scraper service: ```execute oc new-app -f ./config/app/context-scraper-fromsource.yaml \ -p APPLICATION_NAME=context-scraper \ - -p NODEJS_VERSION_TAG=16-ubi \ + -p NODEJS_VERSION_TAG=16-ubi8 \ -p GIT_BRANCH=workshop-stable \ -p GIT_URI=https://github.com/RedHatGov/service-mesh-workshop-code.git ``` @@ -72,7 +72,7 @@ Deploy the user interface: ```execute oc new-app -f ./config/app/app-ui-fromsource.yaml \ -p APPLICATION_NAME=app-ui \ - -p NODEJS_VERSION_TAG=16-ubi \ + -p NODEJS_VERSION_TAG=16-ubi8 \ -p GIT_BRANCH=workshop-stable \ -p GIT_URI=https://github.com/RedHatGov/service-mesh-workshop-code.git \ -e FAKE_USER=true