Giter Site home page Giter Site logo

nimble-docker_setup's Introduction

Deployment Setup

The setup is split into to three configuration scenarios, whereas each scenario has a dedicated directory with the same name. The directory structure is as follows:

  • jenkins_ci: setup for Jenkins CI
  • nginx: setup and configuration for the webserver (i.e. nginx)
  • dev: deployment setup for local development
  • staging: deployment setup for staging environment
  • prod: deployment setup used in production

Each deployment setup is composed of infrastructure componententes and the actual Microservices. A utility script with the name run*.sh can be found in the directories of each setup.

Top Level Components:

  • Nginx is used a reverse proxy for each component.

    • Configuration: nginx/docker-compose.yml
    • Nginx Configuration: nginx/nginx.conf
    • Manual Deployment: fab deploy logs -H <username>@<host> (fabricate
  • Jenkins is used for continous integration.

    • Configuration: jenkins_ci/docker-compose.yml
    • Docker File: jenkins_ci/Dockerfile

Productive Deployment

  • Location: prod

In general the Platform is split into two different kind of components (1) infrastructure components (directory infra) and (2) microservice components (directory services).

Infrastructure Components

These componentes are part of the virtual network with the name nimbleinfraprod_default. More information can be found bey executing docker network inspect nimbleinfraprod_default on the Docker host.

General Infrastructure

  • Marmotta
    • Configuration: prod/infra/docker-compose-marmotta.yml
    • Container Name: nimbleinfraprod_marmotta_1
  • Keycloak
    • Configuration: prod/keycloak/docker-compose-prod.yml
    • Container Name: nimbleinfraprod_keycloak_1
  • ELK Stack
    • Configuration: prod/elk-prod/docker-compose-elk.yml
    • Container Names: nimbleinfraprod_kibana_1, nimbleinfraprod_elasticsearch_1, nimbleinfraprod_logstash_1

Microservice Infrastructure

Defintion can be found in prod/services/docker-compose-prod.yml, which consists of the following components:

  • Config Server:

    • ServiceID: config-server
    • Container Name: nimbleinfraprod_config-server_1
  • Service Discovery:

    • ServiceID: service-discovery
    • Container Name: nimbleinfraprod_service-discovery_1
  • Gateway Proxy:

    • ServiceID: gateway-proxy
    • Container Name: nimbleinfraprod_gateway-proxy_1
  • Hystrix Dashboard (not used at the moment)

    • ServiceID: hystrix-dashboard

Microservice Components:

Definition and configuration of the deployment can be found in prod/services/docker-compose-prod.yml and defines the follwing services:

  • Identity Service
    • ServiceID: identity-service
    • Container Name: nimbleservicesprod_identity-service_1
  • Business Process Service
    • ServiceID: business-process-service
    • Container Name: nimbleservicesprod_business-process-service_1
  • Catalog Service
    • ServiceID: catalog-service-srdc
    • Container Name: nimbleservicesprod_catalog-service-srdc_1
  • Frontend Service
    • ServiceID: frontend-service
    • Container Name: nimbleservicesprod_frontend-service_1
  • Frontend Service Sidecar
    • ServiceID: frontend-service-sidecar
    • Container Name: nimbleservicesprod_frontend-service-sidecar_1

Configuration is done via environment variables, which are define in prod/services/env_vars. Secrets are stored in prod/services/env_vars-prod (this file is adapted on the hosting machine).

Utility Script

A small utility script can be found in run-prod.sh, which provides the following functionalies:

  • run-prod.sh infra: starts all infrastructure components
  • run-prod.sh keycloak: starts the Keycloak container
  • run-prod.sh marmotta: starts the Marmotta container
  • run-prod.sh elk: start all ELK components
  • run-prod.sh services: starts all serivces (note: make sure the infastructue is set up appropriately)
  • run-prod.sh infra-logs: print logs of all microservice components to stdout
  • run-prod.sh services-logs: print logs of all services to stdout
  • run-prod.sh restart-single <serviceID>: restart a single service

Staging Deployment

  • Location: staging

not yet active

(Local) Docker Development Deployment

This section provides detailed information on how to set up a local development deployment using Docker. Required files are located in the dev directory.

  • cd dev

Recommended System Requirements (for Docker)

  • 16GB Memory
  • 4 CPUs

Minimum System Requirements (for Docker)

  • 10GB Memory / 2 CPUs

A utility script called run-dev.sh provides the following main commands:

  • run-dev.sh infrastructure: starts all microservice infrastructure components
  • run-dev.sh services: starts all nimble core services (note: make sure the infrastructue is running appropriately before)
  • run-dev.sh start: starts infrastructure and services (not recommended at the first time)
  • run-dev.sh stop: stop all services

It is recommended to start the infrastructure and the services in separate terminals for easier debugging.

Starting microservice infrastructure

./run-dev.sh infrastructure: log output will be shown in the terminal

Before continuing to start services, check the infrastructure components as follows:

  • docker ps should show 7 new containers up and running:
$ docker ps --format 'table {{.Names}}\t{{.Ports}}'
NAMES                             PORTS
nimbleinfra_gateway-proxy_1       0.0.0.0:80->80/tcp
nimbleinfra_service-discovery_1   0.0.0.0:8761->8761/tcp
nimbleinfra_keycloak_1            0.0.0.0:8080->8080/tcp, 0.0.0.0:8443->8443/tcp
nimbleinfra_kafka_1               0.0.0.0:9092->9092/tcp
nimbleinfra_keycloak-db_1         5432/tcp
nimbleinfra_config-server_1       0.0.0.0:8888->8888/tcp
nimbleinfra_zookeeper_1           2888/tcp, 0.0.0.0:2181->2181/tcp, 3888/tcp
nimbleinfra_maildev_1             25/tcp, 0.0.0.0:8025->80/tcp
nimbleinfra_solr_1                0.0.0.0:8983->8983/tcp

In case of port binding errors, the shown default port mappings can be adapted to local system requirements in infra/docker-compose.yml.

The infrastructure services can be tested by the following http-requests:

Starting the NIMBLE core services

./run-dev.sh services: log output will be shown in the terminal

  • docker ps should show additional 16 containers up and running
$ docker ps --format 'table {{.Names}}\t{{.Ports}}'
NAMES                                          PORTS
nimbleservices_business-process-service_1      0.0.0.0:8085->8085/tcp
nimbleservices_catalog-service-srdc_1          0.0.0.0:10095->8095/tcp
nimbleservices_identity-service_1              0.0.0.0:9096->9096/tcp
nimbleservices_trust-service_1                 9096/tcp, 0.0.0.0:9098->9098/tcp
nimbleservices_marmotta_1                      0.0.0.0:8082->8080/tcp
nimbleservices_ubl-db_1                        0.0.0.0:5436->5432/tcp
nimbleservices_camunda-db_1                    0.0.0.0:5435->5432/tcp
nimbleservices_identity-service-db_1           0.0.0.0:5433->5432/tcp
nimbleservices_frontend-service_1              0.0.0.0:8081->8080/tcp
nimbleservices_business-process-service-db_1   0.0.0.0:5434->5432/tcp
nimbleservices_trust-service-db_1              5432/tcp
nimbleservices_frontend-service-sidecar_1      0.0.0.0:9097->9097/tcp
nimbleservices_marmotta-db_1                   0.0.0.0:5437->5432/tcp
nimbleservices_category-db_1                   5432/tcp
nimbleservices_sync-db_1                       5432/tcp
nimbleservices_binary-content-db_1             0.0.0.0:5438->5432/tcp
nimbleservices_indexing-service_1              0.0.0.0:9101->8080/tcp
...

Port mappings can be adapted in services/docker-compose.yml.

Once the services are up, they should show up in the EUREKA Service Discovrery. Depending on available resources this will take a while.

If they are all up, they can be tested via the NIMBLE frontend at:

Appendix

Deployment Diagram

Deployment Diagram Production

nimble-docker_setup's People

Contributors

jinnerbichler avatar nimble-ci avatar iot365 avatar dileepajayakody avatar sshniro avatar dogukan10 avatar andreamusumecihol avatar suatgonul avatar akayeshmantha avatar shantanoo-desai avatar wernher avatar

Watchers

James Cloos 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.