diff --git a/Makefile b/Makefile index badd1dd..5de3dfb 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.26-1 +TAG=0.0.26-2 KUBE_CMD=oc apply -f DEPLOY_DIR=deploy OUT_STATIC_DIR=tmp/_output diff --git a/deploy/operator.yaml b/deploy/operator.yaml index d6e1402..1b66f3f 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.26-1 + image: quay.io/integreatly/tutorial-web-app-operator:v0.0.26-2 ports: - containerPort: 60000 name: metrics diff --git a/deploy/template/tutorial-web-app.yml b/deploy/template/tutorial-web-app.yml index 21739dd..92015fa 100644 --- a/deploy/template/tutorial-web-app.yml +++ b/deploy/template/tutorial-web-app.yml @@ -90,7 +90,7 @@ objects: value: ${CLUSTER_TYPE} - name: DATABASE_LOCATION value: ${DATABASE_LOCATION} - image: quay.io/integreatly/tutorial-web-app:2.18.2 + image: quay.io/integreatly/tutorial-web-app:2.18.3 imagePullPolicy: Always name: tutorial-web-app ports: diff --git a/version/version.go b/version/version.go index 1fffc6a..460df72 100644 --- a/version/version.go +++ b/version/version.go @@ -1,5 +1,5 @@ package version var ( - Version = "0.0.26-1" + Version = "0.0.26-2" )