diff --git a/deploy/template/tutorial-web-app.yml b/deploy/template/tutorial-web-app.yml index 749e7b3..1d2690a 100644 --- a/deploy/template/tutorial-web-app.yml +++ b/deploy/template/tutorial-web-app.yml @@ -29,7 +29,7 @@ parameters: required: false - name: WALKTHROUGH_LOCATIONS description: A comma separated list of git repositories or paths to walkthrough directories - value: https://github.com/integr8ly/tutorial-web-app-walkthroughs.git#v1.5.0 + value: https://github.com/integr8ly/tutorial-web-app-walkthroughs.git#v1.6.0 required: true objects: - apiVersion: v1 @@ -68,7 +68,7 @@ objects: value: ${SSO_ROUTE} - name: WALKTHROUGH_LOCATIONS value: ${WALKTHROUGH_LOCATIONS} - image: quay.io/integreatly/tutorial-web-app:v2.7.0 + image: quay.io/integreatly/tutorial-web-app:v2.8.0 imagePullPolicy: Always name: tutorial-web-app ports: diff --git a/pkg/handlers/webhandler.go b/pkg/handlers/webhandler.go index 75e5dd1..ad0b094 100644 --- a/pkg/handlers/webhandler.go +++ b/pkg/handlers/webhandler.go @@ -22,7 +22,7 @@ import ( const ( WebappVersion = "master" WTLocations = "WALKTHROUGH_LOCATIONS" - WTLocationsDefault = "https://github.com/integr8ly/tutorial-web-app-walkthroughs#v1.5.0" + WTLocationsDefault = "https://github.com/integr8ly/tutorial-web-app-walkthroughs#v1.6.0" ) var webappParams = [...]string{"OPENSHIFT_OAUTHCLIENT_ID", "OPENSHIFT_HOST", "SSO_ROUTE", WTLocations}