GithubHelp home page GithubHelp logo

mainflux-k8s's Introduction

Deploy Mainflux on Kubernetes - WIP

Scripts to deploy Mainflux on Kubernetes (https://kubernetes.io). Work in progress. Not ready for deployment.

Steps

1. Setup PosgreSQL

  • Create Persistent Volume for PosgreSQL to store data to.
kubectl create -f 1-mainflux-postgres-persistence.yml
  • Claim Persistent Volume
kubectl create -f 2-mainflux-postgres-claim.yml
  • Create PosgreSQL Pod
kubectl create -f 3-mainflux-postgres-pod.yml
  • Create PosgreSQL Service
kubectl create -f 4-mainflux-postgres-service.yml

2. Setup NATS

  • Change nats.conf according to your needs. Create a Kubernetes configmap to store it:
kubectl create configmap nats-config --from-file nats.conf
  • Deploy NATS:
kubectl create -f nats.yml

3. Setup Mainflux Services

  • Create Manager Service
kubectl create -f 1-mainflux-manager.yml
  • Create HTTP Service
kubectl create -f 2-mainflux-http.yml
  • Create MQTT Service
kubectl create -f 3-mainflux-mqtt.yml
  • Create CoAP Service
kubectl create -f 4-mainflux-coap.yml
  • Create Normalizer Service
kubectl create -f 5-mainflux-normalizer.yml

4. Setup Dashflux Services

  • Create Dashflux Deployment and Service
cd dashflux
kubectl create -f mainflux-dashflux.yaml

5. Setup NginX Reverse Proxy for Mainflux Services

  • Create TLS server side certificate and keys
cd certs
kubectl create secret tls mainflux-secret --key mainflux-server.key --cert mainflux-server.crt
  • Create Config Map based on the default.conf file.
cd ..
kubectl create configmap mainflux-nginx-config --from-file=default.conf
  • Create Deployment and Service from mainflux-dashflux.yaml file.
kubectl create -f mainflux-nginx.yaml

6. Configure Internet Access

Configure NAT on your Firewall to forward ports 80 (HTTP) and 443 (HTTPS) to mainflux-nginx service

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.