From c1d3ddabadc77fc27cfa77db49492fcf1b480481 Mon Sep 17 00:00:00 2001 From: Stephin Thomas Date: Fri, 2 Oct 2020 16:50:51 +0200 Subject: [PATCH] web-app-operator bump to 2.8.1 --- Makefile | 2 +- deploy/operator.yaml | 2 +- deploy/template/tutorial-web-app.yml | 2 +- pkg/handlers/webhandler.go | 2 +- version/version.go | 2 +- 5 files changed, 5 insertions(+), 5 deletions(-) diff --git a/Makefile b/Makefile index f31b0ed..b891de9 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.62 +TAG=v0.0.63 KUBE_CMD=oc apply -f DEPLOY_DIR=deploy OUT_STATIC_DIR=tmp/_output diff --git a/deploy/operator.yaml b/deploy/operator.yaml index 6a234d7..c7ea68a 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.62 + image: quay.io/integreatly/tutorial-web-app-operator:v0.0.63 ports: - containerPort: 60000 name: metrics diff --git a/deploy/template/tutorial-web-app.yml b/deploy/template/tutorial-web-app.yml index 25e6705..1c832c9 100644 --- a/deploy/template/tutorial-web-app.yml +++ b/deploy/template/tutorial-web-app.yml @@ -114,7 +114,7 @@ objects: value: ${INSTALLED_SERVICES} - name: INSTALLATION_TYPE value: ${INSTALLATION_TYPE} - image: quay.io/integreatly/tutorial-web-app:2.28.0 + image: quay.io/integreatly/tutorial-web-app:2.28.1 imagePullPolicy: Always name: tutorial-web-app ports: diff --git a/pkg/handlers/webhandler.go b/pkg/handlers/webhandler.go index bd712a2..f7d7e10 100644 --- a/pkg/handlers/webhandler.go +++ b/pkg/handlers/webhandler.go @@ -36,7 +36,7 @@ const ( ClusterTypeDefault = "not set" OpenShiftVersionDefault = "3" OpenShiftAPIHostDefault = "openshift.default.svc" - WebAppImage = "quay.io/integreatly/tutorial-web-app:2.28.0" + WebAppImage = "quay.io/integreatly/tutorial-web-app:2.28.1" serviceName = "tutorial-web-app" routeName = "tutorial-web-app" upgradeData = "UPGRADE_DATA" diff --git a/version/version.go b/version/version.go index e77f28f..d0deb45 100644 --- a/version/version.go +++ b/version/version.go @@ -1,5 +1,5 @@ package version var ( - Version = "0.0.62" + Version = "0.0.63" )