diff --git a/Makefile b/Makefile index 0dc6b2e..9ed7058 100644 --- a/Makefile +++ b/Makefile @@ -2,7 +2,7 @@ SHELL=/bin/bash REG=quay.io ORG=integreatly IMAGE=tutorial-web-app-operator -TAG=0.0.10 +TAG=0.0.11 KUBE_CMD=oc apply -f DEPLOY_DIR=deploy OUT_STATIC_DIR=tmp/_output diff --git a/deploy/operator.yaml b/deploy/operator.yaml index 8db0152..3283e92 100644 --- a/deploy/operator.yaml +++ b/deploy/operator.yaml @@ -15,7 +15,7 @@ spec: serviceAccountName: tutorial-web-app-operator containers: - name: tutorial-web-app-operator - image: quay.io/integreatly/tutorial-web-app-operator:v0.0.10 + image: quay.io/integreatly/tutorial-web-app-operator:v0.0.11 ports: - containerPort: 60000 name: metrics diff --git a/deploy/template/tutorial-web-app.yml b/deploy/template/tutorial-web-app.yml index 1d2690a..faa3cf4 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.6.0 + value: https://github.com/integr8ly/tutorial-web-app-walkthroughs.git#v1.6.1 required: true objects: - apiVersion: v1 diff --git a/pkg/handlers/webhandler.go b/pkg/handlers/webhandler.go index ad0b094..86a6c7b 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.6.0" + WTLocationsDefault = "https://github.com/integr8ly/tutorial-web-app-walkthroughs#v1.6.1" ) var webappParams = [...]string{"OPENSHIFT_OAUTHCLIENT_ID", "OPENSHIFT_HOST", "SSO_ROUTE", WTLocations} diff --git a/version/version.go b/version/version.go index ad21c77..f360737 100644 --- a/version/version.go +++ b/version/version.go @@ -1,5 +1,5 @@ package version var ( - Version = "0.0.10" + Version = "0.0.11" )