Skip to content
This repository has been archived by the owner on Apr 24, 2023. It is now read-only.

Commit

Permalink
Merge pull request #70 from JameelB/INTLY-3286
Browse files Browse the repository at this point in the history
INTLY-3286: Handle reconcile of installed_service env var
  • Loading branch information
JameelB authored Oct 14, 2019
2 parents be12852 + fa2cf43 commit 8381844
Show file tree
Hide file tree
Showing 4 changed files with 9 additions and 4 deletions.
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ SHELL=/bin/bash
REG=quay.io
ORG=integreatly
IMAGE=tutorial-web-app-operator
TAG=0.0.30
TAG=0.0.31
KUBE_CMD=oc apply -f
DEPLOY_DIR=deploy
OUT_STATIC_DIR=tmp/_output
Expand Down
2 changes: 1 addition & 1 deletion deploy/operator.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -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.30
image: quay.io/integreatly/tutorial-web-app-operator:v0.0.31
ports:
- containerPort: 60000
name: metrics
Expand Down
7 changes: 6 additions & 1 deletion deploy/template/tutorial-web-app.yml
Original file line number Diff line number Diff line change
Expand Up @@ -49,6 +49,9 @@ parameters:
description: The location of the user walkthroughs database in the filesystem
value: /opt/user-walkthroughs
required: true
- name: INSTALLED_SERVICES
description: Object which contains information on the services installed by Integreatly. Only used for OpenShift V4
required: false
objects:
- apiVersion: v1
kind: DeploymentConfig
Expand Down Expand Up @@ -104,7 +107,9 @@ objects:
value: ${CLUSTER_TYPE}
- name: DATABASE_LOCATION
value: ${DATABASE_LOCATION}
image: quay.io/integreatly/tutorial-web-app:2.18.7
- name: INSTALLED_SERVICES
value: ${INSTALLED_SERVICES}
image: quay.io/integreatly/tutorial-web-app:2.18.9
imagePullPolicy: Always
name: tutorial-web-app
ports:
Expand Down
2 changes: 1 addition & 1 deletion version/version.go
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
package version

var (
Version = "0.0.30"
Version = "0.0.31"
)

0 comments on commit 8381844

Please sign in to comment.