-
If you don’t already have a Google Account (Gmail or Google Apps), you must create one. Then, sign-in to Google Cloud Platform console (console.cloud.google.com) and create a new project:
-
Store your project ID into a variable as many commands below use it:
export PROJECT_ID="your-project-id" -
Next, enable billing in the Cloud Console in order to use Google Cloud resources and enable the Container Engine API.
-
Install Docker, and Google Cloud SDK.
-
Finally, after Google Cloud SDK installs, run the following command to install
kubectl:gcloud components install kubectl -
Choose a Google Cloud Project zone to run your service. We will be using us-central1-a. This is configured on the command line via:
gcloud config set compute/zone us-west1-a
-
Create a persistent disk. (min. 1 GB) with a name
pg-data-disk.gcloud compute disks create pg-data-disk --size 1GB -
The disk created is un formatted and needs to be formatted. To do that, we need to create a temporarily compute instance.
gcloud compute instances create pg-disk-formatter -
Wait for the instance to get created. Once done, attach the disk to that instance.
gcloud compute instances attach-disk pg-disk-formatter --disk pg-data-disk -
SSH into the instance.
gcloud compute ssh "pg-disk-formatter" -
In the terminal, use the
lscommand to list the disks that are attached to your instance and find the disk that you want to format and mountls /dev/disk/by-idgoogle-example-instance scsi-0Google_PersistentDisk_example-instance google-example-instance-part1 scsi-0Google_PersistentDisk_example-instance-part1 google-[DISK_NAME] scsi-0Google_PersistentDisk_[DISK_NAME]where
[DISK_NAME]is the name of the persistent disk that you attached to the instance.The disk ID usually includes the name of your persistent disk with a
google-prefix or ascsi-0Google_PersistentDisk_prefix. You can use either ID to specify your disk, but this example uses the ID with thegoogle-prefix -
Format the disk with a single
ext4filesystem using themkfstool. This command deletes all data from the specified disk.sudo mkfs.ext4 -F -E lazy_itable_init=0,lazy_journal_init=0,discard /dev/disk/by-id/google-[DISK_NAME] -
The disk is formatted and ready.
-
Now exit the SSH session and Detach the disk from the instance by running
gcloud compute instances detach-disk pg-disk-formatter --disk pg-data-disk
You can delete the instance if your not planning to use it for anything else. But make sure the disk pg-data-disk is not deleted.
-
Create a cluster via the
gcloudcommand line tool:gcloud container clusters create opev-cluster -
Get the credentials for
kubectlto use.gcloud container clusters get-credentials opev-cluster
-
A domain name (Eg. eventyay.com, google.com, hello.io). - A free domain can be registered at http://www.freenom.com .
-
Reserve a static external IP address
gcloud compute addresses create testip --region us-west1
The response would be similar to
Created [https://www.googleapis.com/compute/v1/projects/eventyay-212514/regions/us-west1/addresses/testip]. -
Listing static external IP addresses
gcloud compute addresses list --filter=testip
Note down the address. We'll call this External IP Address One.
-
Add the External IP Address One as an
Arecord to your domain's DNS Zone. -
Add the External IP Address One to
kubernetes/yamls/nginx/service.ymlfor the parameterloadBalancerIP. -
Add your domain name to
kubernetes/yamls/web/ingress-notls.yml&kubernetes/yamls/web/ingress-tls.yml. (replaceapi.eventyay.com) -
Add your email ID to
kubernetes/yamls/lego/configmap.ymlfor the parameterlego.email. -
In
kubernetes/yamls/postgres/deployment.ymlensurepdNameispg-data-disk. Else change it.
-
From the project directory, use the provided deploy script to deploy our application from the defined configuration files that are in the
kubernetesdirectory../kubernetes/deploy.sh create all -
The Kubernetes master creates the load balancer and related Compute Engine forwarding rules, target pools, and firewall rules to make the service fully accessible from outside of Google Cloud Platform.
-
Wait for a few minutes for all the containers to be created and the SSL Certificates to be generated and loaded.
-
You can track the progress using the Web GUI as mentioned below.
-
Once deployed, your instance will be accessible at your domain name.
-
Delete all created pods, services and deployments
./kubernetes/deploy.sh delete all -
Access The Kubernetes dashboard Web GUI
Run the following command to start a proxy.
kubectl proxyand Goto http://localhost:8001/ui
-
Deleting the cluster
gcloud container clusters delete opev-cluster