Skip to content

RefurbMe/k8s-sample

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

6 Commits
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Kubernetes Sample configuration

Sample instructions for a Microservice architecture with kubernetes.

This is a demo for a sample set of services:

  • frontend (2 replicas)
  • api (2 replicas)
  • redis
  • amq

We will use the following concepts:

  • ConfigMap: Stores your environment variables
  • Services: Describes your service network
  • Deployments: Describes the Microservice deployments template.

Initiate your Google Container Engine Cluster

# Set configuration information
gcloud config set compute/zone us-east1-b
gcloud config set project your-project-name

# Create GCE cluster
gcloud container clusters create my-cluster --num-nodes 2 --machine-type n1-standard-2 --zone us-east1-b

# Make sure you edited the project name in the yml files...

# Load ConfigMaps
kubectl create -f ./cm

# Load Services
kubectl create -f ./svc

# Load Deployments
kubectl create -f ./deploy

# Access to the dashboard
kubectl proxy > /dev/null &
# You'll be able to access to Kubernetes dashboard through:
# http://localhost:8001/api/v1/proxy/namespaces/kube-system/services/kubernetes-dashboard/#/workload

Deploy your containers using a CI tool

Full instructions on: https://github.com/RefurbMe/k8s-deploy

Contributions

Feel free to fork this project and open a PR with improvements!

About

Sample instruction for a Microservice architecture with kubernetes

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published