diff --git a/Makefile b/Makefile index de94198..08d3f1a 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.37 +TAG=0.0.38 KUBE_CMD=oc apply -f DEPLOY_DIR=deploy OUT_STATIC_DIR=tmp/_output diff --git a/deploy/operator.yaml b/deploy/operator.yaml index 52c3080..6335260 100644 --- a/deploy/operator.yaml +++ b/deploy/operator.yaml @@ -15,12 +15,12 @@ spec: serviceAccountName: tutorial-web-app-operator containers: - name: tutorial-web-app-operator - image: quay.io/integreatly/tutorial-web-app-operator:v0.0.37 + image: quay.io/integreatly/tutorial-web-app-operator:v0.0.38 ports: - - containerPort: 60000 - name: metrics + - containerPort: 60000 + name: metrics command: - - tutorial-web-app-operator + - tutorial-web-app-operator imagePullPolicy: Always env: - name: WATCH_NAMESPACE diff --git a/version/version.go b/version/version.go index 702a66f..9dd1b12 100644 --- a/version/version.go +++ b/version/version.go @@ -1,5 +1,5 @@ package version var ( - Version = "0.0.37" + Version = "0.0.38" )