Git Product home page Git Product logo

officespace-spring-boot-microservices-on-kubernetes-20170523183152446's Introduction

Build Status

OfficeSpace: Polyglot Microservices application leveraging Java Spring Boot on Kubernetes

Spring Boot is one of the popular Java microservices framework. Spring Cloud has a rich set of well integrated Java libraries to address runtime concerns as part of the Java application stack, and Kubernetes provides a rich featureset to run polyglot microservices. Together these technologies complement each other and make a great platform for Spring Boot applications.

In this code we demonstrate how a simple Spring Boot application can be deployed on top of Kuberneets. This application, Office Space, mimicks the fictitious app idea from Michael Bolton in the movie Office Space. The app takes advantage of a financial program that computes interest for transactions by diverting fractions of a cent that are usually rounded off into a seperate bank account.

The application uses a Java 8/Spring Boot microservice that computes the interest then takes the fraction of the pennies to a database. Another Spring Boot microservice is the notification service. It sends email when the account balance reach more than $50,000. It is triggered by the Spring Boot webserver that computes the interest. The frontend uses a Node.js app that shows the current account balance accumulated by the Spring Boot app. The backend uses a MySQL database to store the account balance.

spring-boot-kube

Prerequisite

Create a Kubernetes cluster with either Minikube for local testing, or with IBM Bluemix Container Service to deploy in cloud. The code here is regularly tested against Kubernetes Cluster from Bluemix Container Service using Travis.

Deploy to Bluemix

If you want to deploy the Office Space app directly to Bluemix, click on 'Deploy to Bluemix' button below to create a Bluemix DevOps service toolchain and pipeline for deploying the sample, else jump to Steps

You will need to create your Kubernetes cluster first and make sure it is fully deployed in your Bluemix account.

Create Toolchain

Please follow the Toolchain instructions to complete your toolchain and pipeline.

Steps

  1. Create the Database service
  2. Create the Spring Boot Microservices
  3. Create the Frontend service
  4. Create the Transaction Generator service
  5. Access Your Application

1. Create the Database service

The backend consists of the MySQL database and the Spring Boot app. You will also be creating a deployment controller for each to provision their Pods.

  • There are two ways to create the MySQL database backend: Use MySQL in a container in your cluster OR Use Bluemix MySQL

1.1 Use MySQL in container

NOTE: Leave the environment variables blank in the compute-interest-api.yaml and account-summary.yaml

$ kubectl create -f account-database.yaml
service "account-database" created
deployment "account-database" created

1.2 Use Bluemix MySQL

Provision Compose for MySQL in Bluemix via https://console.ng.bluemix.net/catalog/services/compose-for-mysql Go to Service credentials and view your credentials. Your MySQL hostname, port, user, and password are under your credential uri and it should look like this images You will need to modify both compute-interest-api.yaml and account-summary.yaml files. You need to modify their environment variables to use your MySQL database in Bluemix:

// compute-interest-api.yaml AND account-summary.yaml
env:
    - name: OFFICESPACE_MYSQL_DB_USER
      value: '<your-username>'
    - name: OFFICESPACE_MYSQL_DB_PASSWORD
      value: '<Your-database-password>'
    - name: OFFICESPACE_MYSQL_DB_HOST
      value: '<Your-database-host>'
    - name: OFFICESPACE_MYSQL_DB_PORT
      value: '<your-port-number>'

IMPORTANT: You will also need to put in 'bluemix' in the environment MYSQL_ENVIRONMENT of compute-interest-api.yaml. This would make the Spring Boot app of compute-interest-api to select the right configuration for bluemix

// compute-interest-api.yaml
    - name: MYSQL_ENVIRONMENT
      value: 'bluemix'

2. Create the Spring Boot Microservices

You will need to have Maven installed on your environment. If you want to modify the Spring Boot apps, you will need to do it before building the Java project and the docker image.

The Spring Boot Microservices are the Compute-Interest-API and the Send-Notification.

The Send-Notification can be configured to send notification through gmail and/or Slack. Default is the gmail option. You can also use event driven technology, in this case OpenWhisk to send emails and slack messages. To use OpenWhisk with your notification microservice, please follow the steps here before building and deploying the microservice images. Otherwise, you can proceed if you choose to only have an email notification setup.

    1. Build the images

    After Maven has successfully built the Java project, you will need to build the Docker image using the provided Dockerfile in their respective folders.

     Go to containers/compute-interest-api
     $ mvn package
     $ docker build -t registry.ng.bluemix.net/<namespace>/compute-interest-api .
    
     Go to containers/email-office-space
     $ mvn package
     $ docker build -t registry.ng.bluemix.net/<namespace>/send-notification .

    We will be using Bluemix container registry to push images (hence the image naming), but the images can be pushed in Docker hub as well.

    1. Push the images:

    Note: This is being pushed in the Bluemix Container Registry.

    If you plan to use Bluemix Container Registry, you will need to setup your account first. Follow the tutorial here.

    You can also push it in Docker Hub.

     $ docker push registry.ng.bluemix.net/<namespace>/compute-interest-api
     $ docker push registry.ng.bluemix.net/<namespace>/send-notification
    1. Modify compute-interest-api.yaml and send-notification.yaml to use your image
    // compute-interest-api.yaml
     spec:
       containers:
       - image: registry.ng.bluemix.net/<namespace>/compute-interest-api # replace with your image name
    // send-notification.yaml
      spec:
        containers:
        - image: registry.ng.bluemix.net/<namespace>/send-notification # replace with your image name

    You will also need to modify the environment variables in the send-notification.yaml:

     env:
     - name: GMAIL_SENDER_USER
        value: '[email protected]' # change this to the gmail that will send the email
     - name: GMAIL_SENDER_PASSWORD
        value: 'password' # change this to the the password of the gmail above
     - name: EMAIL_RECEIVER
        value: '[email protected]' # change this to the email of the receiver
    1. Deploy the Spring Boot Microservices
     $ kubectl create -f compute-interest-api.yaml
     service "compute-interest-api" created
     deployment "compute-interest-api" created
     $ kubectl create -f send-notification.yaml
     service "send-notification" created
     deployment "send-notification" created

    Note: The compute-interest-api multiplies the fraction of the pennies to x100,000 for simulation purposes. You can edit/remove the line remainingInterest *= 100000 in src/main/java/officespace/controller/MainController.java then build the image again.

To use OpenWhisk with your notification microservice for email and slack messages, follow the step below, or jump to step 3 to create the Node.js frontend

21 Use OpenWhisk Action with Spring Boot Notification service

Requirements for this sections:

  1. Create an OpenWhisk Action

    • Click on Developer in your Browser and click on Create an Action Create-Action

    • Then click on Create-Action

      Create-Action

    • Copy the sendSlack.js for sending a Slack Notification then save it Copy-Script

    • Set your Slack Webhook URL as default parameter for the action then save it Click on View Action Details Set-Default Then set url to https://< Your Slack Team's incoming webhook url> Set-Default

    • Create another action for sendEmail.js for sending an email through Gmail.

  2. Create Managed API

    • From the API tab, Create Managed API Managed-API

    • Then set an API name Managed-API

    • Create an operation. Make it a POST request and select the Slack Action you just created. Do the same fore the Email Action. Create-Operation

      Create-Operation

    • Go to the API Explorer section on your managed API and take note of the URL for both Slack and Email operations. API-Url

  3. Modify send-notification.yaml

    • Fill in the necessary values on the environment variables
    - name: OPENWHISK_API_URL_SLACK
      value: 'openwhisk api url for slack action' # enter the url of the API you just created
    - name: SLACK_MESSAGE
      value: 'Your balance is over $50,000.00' # set the slack message
    - name: OPENWHISK_API_URL_EMAIL
      value: 'openwhisk api url for email action'

3. Create the Frontend service

The UI is a Node.js app that shows the total account balance. If you are using a MySQL database in Bluemix, don't forget to fill in the values of the environment variables in account-summary.yaml file, otherwise leave them blank. This was done in Step 1.

  • Create the Node.js frontend:
$ kubectl create -f account-summary.yaml
service "account-summary" created
deployment "account-summary" created

4. Create the Transaction Generator service

The transaction generator is a Python app that generates random transactions with accumulated interest.

  • Create the transaction generator Python app:
$ kubectl create -f transaction-generator.yaml
service "transaction-generator" created
deployment "transaction-generator" created

5. Access Your Application

You can access your app publicly through your Cluster IP and the NodePort. The NodePort should be 30080.

  • To find your IP:
$ kubectl get nodes
NAME             STATUS    AGE
169.47.241.213   Ready     7d
---OR---
$ bx cs workers <cluster-name>
ID                                                 Public IP        Private IP      Machine Type   State    Status   
kube-dal10-paac005a5fa6c44786b5dfb3ed8728548f-w1   169.47.241.213   10.177.155.13   free           normal   Ready  
  • To find the NodePort of the account-summary service:
$ kubectl get svc
NAME                    CLUSTER-IP     EXTERNAL-IP   PORT(S)                                                                      AGE
...
account-summary         10.10.10.74    <nodes>       80:30080/TCP                                                                 2d
...
  • On your browser, go to http://<your-cluster-IP>:30080 Account-balance

Troubleshooting

  • To start over, delete everything: kubectl delete svc,deploy -l app=office-space

References

License

Apache 2.0

officespace-spring-boot-microservices-on-kubernetes-20170523183152446's People

Contributors

anthonyamanse avatar animeshsingh avatar

Watchers

James Cloos avatar  avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.