From 8ec82b3247ba1dbfdeabdd5d38a7f6899ccf88be Mon Sep 17 00:00:00 2001 From: Peter Braun Date: Tue, 14 May 2019 11:10:16 +0200 Subject: [PATCH] release 0.0.16 --- .gitignore | 2 ++ Makefile | 2 +- deploy/operator.yaml | 2 +- deploy/template/tutorial-web-app.yml | 2 +- version/version.go | 2 +- 5 files changed, 6 insertions(+), 4 deletions(-) diff --git a/.gitignore b/.gitignore index 5c1b057..4f7e9af 100644 --- a/.gitignore +++ b/.gitignore @@ -110,5 +110,7 @@ tags !.vscode/extensions.json .history +# Operator SDK binaries +operator-sdk-* # End of https://www.gitignore.io/api/go,vim,emacs,visualstudiocode diff --git a/Makefile b/Makefile index 98a433d..702eca7 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.15 +TAG=0.0.16 KUBE_CMD=oc apply -f DEPLOY_DIR=deploy OUT_STATIC_DIR=tmp/_output diff --git a/deploy/operator.yaml b/deploy/operator.yaml index 8bce927..a1adba8 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.15 + image: quay.io/integreatly/tutorial-web-app-operator:v0.0.16 ports: - containerPort: 60000 name: metrics diff --git a/deploy/template/tutorial-web-app.yml b/deploy/template/tutorial-web-app.yml index 4c73715..b228005 100644 --- a/deploy/template/tutorial-web-app.yml +++ b/deploy/template/tutorial-web-app.yml @@ -68,7 +68,7 @@ objects: value: ${SSO_ROUTE} - name: WALKTHROUGH_LOCATIONS value: ${WALKTHROUGH_LOCATIONS} - image: quay.io/integreatly/tutorial-web-app:2.10.1 + image: quay.io/integreatly/tutorial-web-app:2.10.2 imagePullPolicy: Always name: tutorial-web-app ports: diff --git a/version/version.go b/version/version.go index d1d6732..02db309 100644 --- a/version/version.go +++ b/version/version.go @@ -1,5 +1,5 @@ package version var ( - Version = "0.0.15" + Version = "0.0.16" )