Giter Site home page Giter Site logo

entree-cf-clone's Introduction

refarch-cloudnative-wfd-entree

Microservices Reference Application - What's For Dinner Entree Service

This project is part of the 'IBM Cloud Architecture - Microservices Reference Application for Netflix OSS' suite, available at https://github.com/ibm-cloud-architecture/refarch-cloudnative-netflix

Introduction

This project is built to demonstrate how to build a Spring Boot application for use in a microservices-based architecture:

  • Leverage Spring Boot framework to build a microservices application.
  • Integrate with Netflix Eureka framework.
  • Deployment options for local, Cloud Foundry, or Docker Container-based runtimes (including IBM Container Service on Bluemix).

APIs in this application

You can use cURL or Chrome POSTMAN to send get/post/put/delete requests to the application.

  • Get available options for Entrees
    http://<hostname>/entrees

Pre-requisite:

Build the application

  1. Clone git repository.

    git clone https://github.com/ibm-cloud-architecture/refarch-cloudnative-wfd-entree
    cd refarch-cloudnative-wfd-entree
    
  2. Build the application. A utility script is provided to easily build using either Gradle (default) or Maven. You can optionally specify the -d parameter to build the associated Docker image as well. The default Gradle build instructions use a Gradle wrapper requiring no further installation. The Maven build instructions require Maven to be installed locally.

2.1 Build the application using Gradle: ./build-microservice.sh [-d]

2.2 Build the application using Maven: ./build-microservice.sh -m [-d]

Run Entree Service on localhost

In this section you will deploy the Spring Boot application to run on your localhost.

  1. Setup Eureka to run locally.

  2. Run the application on localhost (assuming default Gradle build). If Eureka is not running locally, you will need to pass the location of the Eureka server as a command-line paramter.

    java [-Deureka.client.serviceUrl.defaultZone=http://eureka-host:port/eureka/] -jar build/libs/wfd-entree-0.0.1-SNAPSHOT.jar
    
  3. Validate.

    curl http://localhost:8081/entrees
    {"order":2,"menu":["Steak","Chicken","Fish"],"type":"dinner"}
    

Run Entree Service application on local Docker container

In this section you will deploy the Spring Boot application to run in a local Docker container.

  1. Build service and container image:

    ./build-microservice.sh -d
    
  2. If not done so already, Setup Eureka to run locally.

  3. Start the application in docker container.

    docker run -d -p 8081:8081 --name wfd-entree --rm --env "eureka.client.serviceUrl.defaultZone=http://eureka-host:port/eureka/"  wfd-entree
    
  4. Validate.

    curl http://{docker-host}:8081/entrees
    {"order":2,"menu":["Steak","Chicken","Fish"],"type":"dinner"}
    

Deploy Entree Service to Cloud Foundry runtime, on IBM Bluemix

  1. Log in to your Bluemix account.

    cf login -a <bluemix-api-endpoint> -u <your-bluemix-user-id>
    
  2. Set target to use your Bluemix Org and Space.

    cf target -o <your-bluemix-org> -s <your-bluemix-space>
    
  3. Setup Eureka on Bluemix.

  4. Create a user-provided service for Eureka, so the services running in Cloud Foundry can bind to it:

    cf create-user-provided-service eureka-service-discovery -p "{\"uri\": \"http://{eureka-host}/eureka/\"}"
    
  5. Start the application in a Cloud Foundry runtime on IBM Bluemix.

The following commands push the service code to Bluemix and creates a Cloud Foundry application. It then sets the desired Spring Boot profile for the application to configure itself correctly, as well as binds the user-provided service with the Eureka endpoint information. Finally, it restages the application code to ensure it receives all the configuration changes and then starts the application.

NOTE: There is no need for a port in the Eureka parameter, as the Container Group running Eureka is listening on port 80 (the default HTTP port) and will forward to the necessary port of 8761 that Eureka is listening on.

```
cf push -p build/libs/wfd-entree-0.0.1-SNAPSHOT.jar -d mybluemix.net -n wfd-entree-{your-bluemix-user-id} --no-start

cf set-env wfd-entree SPRING_PROFILES_ACTIVE cloud

cf bind-service wfd-entree eureka-service-discovery

cf restage wfd-entree

cf start wfd-entree
```
  1. Validate.
    curl http://wfd-entree-{your-bluemix-user-id}.mybluemix.net/entrees
    {"order":2,"menu":["Steak","Chicken","Fish"],"type":"dinner"}
    

Deploy entree Service to Docker Container, on IBM Bluemix

  1. Log in to your Bluemix account.

    cf login -a <bluemix-api-endpoint> -u <your-bluemix-user-id>
    
  2. Set target to use your Bluemix Org and Space.

    cf target -o <your-bluemix-org> -s <your-bluemix-space>
    
  3. Log in to IBM Containers plugin.

    cf ic init
    
  4. Tag and push the local docker image to bluemix private registry.

    docker tag wfd-entree registry.ng.bluemix.net/$(cf ic namespace get)/wfd-entree:latest
    docker push registry.ng.bluemix.net/$(cf ic namespace get)/wfd-entree:latest
    
  5. Setup Eureka on Bluemix.

  6. Start the application in an IBM Bluemix Container. Replace {eureka-host} with the public route configured in the deployment of Eureka to Bluemix.

NOTE: There is no need for a port in the Eureka parameter, as the Container Group running Eureka is listening on port 80 (the default HTTP port) and will forward to the necessary port of 8761 that Eureka is listening on.
cf ic group create -p 8082 -m 256 --min 1 --auto --name wfd-entree-group -e "--env "eureka.client.serviceUrl.defaultZone=http://eureka-host/eureka/" -n wfd-entree-$(cf ic namespace get) -d mybluemix.net registry.ng.bluemix.net/$(cf ic namespace get)/wfd-entree:latest

  1. Validate.
    curl http://wfd-entree-$(cf ic namespace get).mybluemix.net/entrees
    {"order":2,"menu":["Steak","Chicken","Fish"],"type":"dinner"}
    

entree-cf-clone's People

Contributors

osowski avatar edwinvandegrift 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.