Part 1

1. Quickly install previous workshops

This step lets you quickly install the components that was deployed in Identity Management workshop and Operator workshop

Clone the repo example-bank

$ git clone https://github.com/IBM/example-bank
$ cd example-bank/scripts

Log in your IBM Cloud account with the ibmcloud cli

Make sure to use your personal account when it asks you.

$ ibmcloud login -u YOUR_IBM_CLOUD_EMAIL

Create an App ID instance using the script.

$ ./createappid.sh

App ID instance created and configured
Management server: https://**.appid.cloud.ibm.com/management/v4/**
Api key:           YOUR_API_KEY
Auto-generated
appid-example-bank-credentials

Then export the App ID instance's management server and the API key.

Log in with the OpenShift cluster provided for you using the OpenShift console. On the upper right corner, click your account and then click on Copy Login Command. This should open a new window and show you the command to login with the oc cli

IBM Cloud dashboard
OpenShift Console

Create a project called example-bank

Deploy a Postgres instance in your OpenShift cluster

Create secrets using the script below. This creates the necessary secrets in your OpenShift cluster

Deploy the front end microservice from the Identity Management Workshop

2. Build Java microservices

Build the microservices - user, transaction, and erasure microservices. You'll also build an image that would load the proper schema in the database.

First, you can build the schema and database model loader.

Then, build the transaction and user microservices

Then, build the erasure service

You can now push the container images you built

Last updated

Was this helpful?