diff --git a/Makefile b/Makefile index 58ab2ea..d12b23a 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.42 +TAG=0.0.43 KUBE_CMD=oc apply -f DEPLOY_DIR=deploy OUT_STATIC_DIR=tmp/_output diff --git a/deploy/operator.yaml b/deploy/operator.yaml index 000d20d..6c7ad64 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.42 + image: quay.io/integreatly/tutorial-web-app-operator:v0.0.43 ports: - containerPort: 60000 name: metrics diff --git a/deploy/template/tutorial-web-app.yml b/deploy/template/tutorial-web-app.yml index a378395..272f133 100644 --- a/deploy/template/tutorial-web-app.yml +++ b/deploy/template/tutorial-web-app.yml @@ -109,7 +109,7 @@ objects: value: ${DATABASE_LOCATION} - name: INSTALLED_SERVICES value: ${INSTALLED_SERVICES} - image: quay.io/integreatly/tutorial-web-app:2.20.10 + image: quay.io/integreatly/tutorial-web-app:2.21.0 imagePullPolicy: Always name: tutorial-web-app ports: diff --git a/pkg/handlers/webhandler.go b/pkg/handlers/webhandler.go index 2a5c56b..0c4f199 100644 --- a/pkg/handlers/webhandler.go +++ b/pkg/handlers/webhandler.go @@ -31,7 +31,7 @@ const ( ClusterTypeDefault = "not set" OpenShiftVersionDefault = "3" OpenShiftAPIHostDefault = "openshift.default.svc" - WebAppImage = "quay.io/integreatly/tutorial-web-app:2.20.10" + WebAppImage = "quay.io/integreatly/tutorial-web-app:2.21.0" ) var webappParams = [...]string{"OPENSHIFT_OAUTHCLIENT_ID", "OPENSHIFT_HOST", "OPENSHIFT_OAUTH_HOST", "SSO_ROUTE", OpenShiftAPIHost, OpenShiftVersion, IntegreatlyVersion, WTLocations, ClusterType} diff --git a/version/version.go b/version/version.go index 0bf753d..f5f5515 100644 --- a/version/version.go +++ b/version/version.go @@ -1,5 +1,5 @@ package version var ( - Version = "0.0.42" + Version = "0.0.43" )