diff --git a/Makefile b/Makefile index cf487d9..a267ee3 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.4 +TAG=0.0.5 KUBE_CMD=oc apply -f DEPLOY_DIR=deploy OUT_STATIC_DIR=tmp/_output @@ -62,4 +62,4 @@ cluster/prepare: .PHONY: cluster/deploy cluster/deploy: - ${KUBE_CMD} ${DEPLOY_DIR}/operator.yaml \ No newline at end of file + ${KUBE_CMD} ${DEPLOY_DIR}/operator.yaml diff --git a/deploy/operator.yaml b/deploy/operator.yaml index 0e4dd76..9dd1e1d 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.4 + image: quay.io/integreatly/tutorial-web-app-operator:v0.0.5 ports: - containerPort: 60000 name: metrics diff --git a/version/version.go b/version/version.go index 2a179e8..9dc41a9 100644 --- a/version/version.go +++ b/version/version.go @@ -1,5 +1,5 @@ package version var ( - Version = "0.0.4" + Version = "0.0.5" )