Git Product home page Git Product logo

dock-kub-helm's Introduction

Getting Started with MSA (Micro Service Architecture)

Getting started with MSA (Micro Service Architecture) using Docker, Kubernetes and Helm Charts.

  1. Used minikube to setup Kubernetes cluster.
  2. Setup script for Ubuntu (18.0.4 LTS) on AWS that installs all dependencies (Docker, Kubernetes, Minikube).

Start minikube - Minikube runs a single-node Kubernetes cluster inside the instance.

minikube start --vm-driver=none

If there was a previous deployment on the instance, it might be necessary to override the previous configuration

sudo mv /root/.kube $HOME/.kube
sudo mv /root/.minikube $HOME/.minikube

If neccessary change user and group ownership.

sudo chown -R $USER $HOME/.kube
sudo chgrp -R $USER $HOME/.kube
sudo chown -R $USER $HOME/.minikube
sudo chgrp -R $USER $HOME/.minikube

Check status of the minikube

minikube status

Deploy the service - a Hello world app using the tutum/hello-world image

kubectl create -f deployment.yaml

Get IP to reach the service

minikube ip

Display information about the Deployment:

kubectl get deployments msadeployment
kubectl describe deployments msadeployment

Display information about the Service

kubectl get services msaservice

Display detailed information about the Service

kubectl describe services msaservice

Use the minikube ip to access the Hello World application

curl http://<minikube ip>:<nodeport>

To access the app outside the ec2 Instance (pulic web access)

http://<ec2-instance-public-ip>:<nodeport>

image

To Clean up first delete the Service then delete the Deployment, the ReplicaSet, and the Pods that are running the app

kubectl delete deployment msadeployment
kubectl delete services msaservice

Kubernetes Command Reference

dock-kub-helm's People

Contributors

gideonaina avatar

Watchers

 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.