From 22f6713f1d7e1b61e4b8777c52e002c3a51b9646 Mon Sep 17 00:00:00 2001 From: Jameel Briones Date: Thu, 30 Apr 2020 16:59:24 +0100 Subject: [PATCH 1/2] update walkthrough version to 1.12.1 --- deploy/template/tutorial-web-app.yml | 2 +- pkg/handlers/webhandler.go | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/deploy/template/tutorial-web-app.yml b/deploy/template/tutorial-web-app.yml index 9c02836..99f6b8e 100644 --- a/deploy/template/tutorial-web-app.yml +++ b/deploy/template/tutorial-web-app.yml @@ -43,7 +43,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.12.0 + value: https://github.com/integr8ly/tutorial-web-app-walkthroughs.git#v1.12.1 required: true - name: DATABASE_LOCATION description: The location of the user walkthroughs database in the filesystem diff --git a/pkg/handlers/webhandler.go b/pkg/handlers/webhandler.go index ed3a8bc..edf6984 100644 --- a/pkg/handlers/webhandler.go +++ b/pkg/handlers/webhandler.go @@ -30,7 +30,7 @@ const ( OpenShiftVersion = "OPENSHIFT_VERSION" OpenShiftAPIHost = "OPENSHIFT_API" InstalledServices = "INSTALLED_SERVICES" - WTLocationsDefault = "https://github.com/integr8ly/tutorial-web-app-walkthroughs#v1.12.0" + WTLocationsDefault = "https://github.com/integr8ly/tutorial-web-app-walkthroughs#v1.12.1" IntegreatlyVersionDefault = "not set" ClusterTypeDefault = "not set" OpenShiftVersionDefault = "3" From ec54156ec41209de54a20fdb34b701cb7b579cac Mon Sep 17 00:00:00 2001 From: Jameel Briones Date: Thu, 30 Apr 2020 17:02:23 +0100 Subject: [PATCH 2/2] bump operator version to 0.0.51 --- Makefile | 2 +- deploy/operator.yaml | 2 +- version/version.go | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/Makefile b/Makefile index 1030613..9281b7e 100644 --- a/Makefile +++ b/Makefile @@ -2,7 +2,7 @@ SHELL=/bin/bash REG=quay.io ORG=integreatly IMAGE=tutorial-web-app-operator -TAG=v0.0.50 +TAG=v0.0.51 KUBE_CMD=oc apply -f DEPLOY_DIR=deploy OUT_STATIC_DIR=tmp/_output diff --git a/deploy/operator.yaml b/deploy/operator.yaml index f2647a0..110573d 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.50 + image: quay.io/integreatly/tutorial-web-app-operator:v0.0.51 ports: - containerPort: 60000 name: metrics diff --git a/version/version.go b/version/version.go index 685f47b..8eb9e60 100644 --- a/version/version.go +++ b/version/version.go @@ -1,5 +1,5 @@ package version var ( - Version = "0.0.50" + Version = "0.0.51" )