diff --git a/Makefile b/Makefile index e886619..d2d284e 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.55 +TAG=v0.0.56 KUBE_CMD=oc apply -f DEPLOY_DIR=deploy OUT_STATIC_DIR=tmp/_output diff --git a/deploy/operator.yaml b/deploy/operator.yaml index 964ff63..5a374b4 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.55 + image: quay.io/integreatly/tutorial-web-app-operator:v0.0.56 ports: - containerPort: 60000 name: metrics diff --git a/deploy/template/tutorial-web-app.yml b/deploy/template/tutorial-web-app.yml index 7e5727e..d6f2fba 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.24.0 + image: quay.io/integreatly/tutorial-web-app:2.25.0 imagePullPolicy: Always name: tutorial-web-app ports: diff --git a/pkg/handlers/webhandler.go b/pkg/handlers/webhandler.go index 0a746b4..ab05e37 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.24.0" + WebAppImage = "quay.io/integreatly/tutorial-web-app:2.25.0" serviceName = "tutorial-web-app" routeName = "tutorial-web-app" ) diff --git a/version/version.go b/version/version.go index 9dc0c8e..869b33a 100644 --- a/version/version.go +++ b/version/version.go @@ -1,5 +1,5 @@ package version var ( - Version = "0.0.55" + Version = "0.0.56" )