Project Janus is an example of cloud native architecture. This repository demonstrates how to bootstrap a Kubernetes cluster, using Google Kubernetes Engine, ready for other Project Janus examples to be run.
kubectl (as a gcloud component)
This guide assumes a basic familiarity with GKE, and is largely based on the Google Kubernetes Engine Quickstart
You will need to have logged into your Google Cloud dashboard, and created a new project. Be sure to note the Project ID located under the Project Info card on your dashboard.
Log into your local gcloud shell before you begin: gcloud auth login
Set default project:
gcloud config set project [PROJECT-ID]
Set default compute/zone:
gcloud config set compute/zone [COMPUTE-ZONE]
Create:
gcloud container clusters create [CLUSTER-NAME]
Authenticate:
gcloud container clusters get-credentials [CLUSTER-NAME]
You are now ready to deploy applications to your GKE Cluster. See the other Janus projects for how.
gcloud container clusters delete [CLUSTER-NAME]
Included are two bash scripts used to create a Kubernetes cluster, and destroy it.
The build scripts assume the above project ID is exported as such:
export GCP_PROJECT_ID="my-demo-12345"
Create a cluster:
sh ./deploy.sh cluster-node-name
Destroy a cluster:
sh ./destroy.sh cluster-node-name
Andrew Bell
homepage: www.recursivechaos.com
email: [email protected]
twitter: @recursive_chaos