DEV Community

Cover image for NodeJS Continuous Deployment in Google Cloud with Kubernetes & Container Builder
Mario
Mario

Posted on

NodeJS Continuous Deployment in Google Cloud with Kubernetes & Container Builder

So you want your app to be deployed to your Kubernetes Cluster without caring about any manual step?
I got you covered, it's super simple to create a Continuous Deployment Pipeline with Google Cloud.
For the sake of understanding I choose an NodeJS Express Application, but it also works with react or PHP or any other application layer.

Let's get started:

Because IAM admin

First we need to give the container builder the rights to access our Kubernetes API. Remember this does not give access to a certain cluster. It just allows the cloudbuilder service account to access our Kubernetes Cluster. So jump to the IAM settings page and look for the cloudbuild service account. If it does not exist you might have to enable the cloudbuild API

It should look like this
cloud build service account

We need to add the rights to access the Kubernetes API of our clusters so klick on the pen and look for the following.

Kubernetes API access rights

Prepare the application

I won't go into details on how to setup an express application and introduce testing to it.
I created a repository with the sample application, that we can use

GitHub logo mfahlandt / gcp-continuous-deployment-node-demo

This is an example project to show how you can easily create a continuous deployment to google cloud

NodeJS Continuous Deployment done with Container Builder and Kubernetes Engine

To find all the details on how to use this repository please look refere to the corresponding block post on dev.to




To give you an overview, we have a basic express app with 2 backend routes to retrieve users or and user by id.
Also we have a test folder that have tests for the two routes in it. These tests are written with the help of chai and mocha.
If you download the repository you can do the following to see if the tests are working.


npm install
npm test

Enter fullscreen mode Exit fullscreen mode

Before the app can run we need the service and the deployment in the Kubernetes Cluster. So let's quickly create a service and a deployment. All of the files you also can find in the repository.


apiVersion: extensions/v1beta1
kind: Deployment
metadata:
  name: server-production
  labels:
    app: YOUR-PROJECT-ID
spec:
  replicas: 2
  strategy:
    type: RollingUpdate
    rollingUpdate:
      maxSurge: 1
      maxUnavailable: 1
  template:
    metadata:
      labels:
        app: server
    spec:
      containers:
        - name: server
          image: gcr.io/PROJECT_ID/REPOSITORY:master
          imagePullPolicy: Always
          ports:
            - containerPort: 3000
          env:
            - name: NODE_ENV
              value: "production"

Enter fullscreen mode Exit fullscreen mode

The only important part here is that you change the project id and the repository to the path that the repository will have.

After this we only need a service to expose our app to the internet. So quickly apply the service.


kind: Service
apiVersion: v1
metadata:
  name:  server
spec:
  selector:
    app:  server
  ports:
    - name:  server
      protocol: TCP
      port: 80
      targetPort: 3000
  type: LoadBalancer

Enter fullscreen mode Exit fullscreen mode

Ready to deploy

Now we need to go to the most important part of the whole Setup. The cloudbuild.yaml. There we will define everything for our continuous deployment steps.

The first amazing part will be, that it is possible to put all of the important data in environment variables defined in the build, so you can use the cloud build for different setups.

First we install all of the node dependencies and run the test.


  - name: 'gcr.io/cloud-builders/npm'
    args: ['install']
  - name: 'gcr.io/cloud-builders/npm'
    args: ['run', 'test']

Enter fullscreen mode Exit fullscreen mode

After this we build a docker image with all the repositories files inside and a proper defined environment, so you can easily do a staging deployment as well, or even branch deployment. And we push it to the google image repository.


  - name: 'gcr.io/cloud-builders/docker'
    args:
      - build
      - '--build-arg'
      - 'buildtime_variable=$_NODE_ENV'
      - '-t'
      - gcr.io/$PROJECT_ID/$REPO_NAME:$BUILD_ID
      - '.'
  - name: 'gcr.io/cloud-builders/docker'
    args: ['push', 'gcr.io/$PROJECT_ID/$REPO_NAME:$BUILD_ID']

Enter fullscreen mode Exit fullscreen mode

Also important to see, we tag the image with the unique build id to make use of the apply ability of kubernetes, so the image is actually changed.


  - name: 'gcr.io/cloud-builders/kubectl'
    args:
      - set
      - image
      - deployment
      - $_DEPLOYMENT
      - $_DEPLOYMENT=gcr.io/$PROJECT_ID/$REPO_NAME:$BUILD_ID
    env:
      - 'CLOUDSDK_COMPUTE_ZONE=$_CLUSTER_ZONE'
      - 'CLOUDSDK_CONTAINER_CLUSTER=$_CLUSTER_NAME'

Enter fullscreen mode Exit fullscreen mode

And finally we set the image in the kubernetes cluster. BAM! Commit hook, automated testing, if successful automated deployment, no downtime.

Now we open the container builder trigger and choose where our code is located.

create trigger

In the last trigger step we now can add the custom variables. This is the first point where we actually define the cluster. So everything is aggregated at one place and ready to go.

create trigger part 2

Now we just need to commit to the master and the trigger is started.

Build successful

YIHA now we have continuous deployment, without setting up any extra services like jenkins, ant or chef. Pretty amazing

I'm thinking of creating a tutorials series from zero to hero in cloud are you interested? drop me a comment!

Top comments (3)

Collapse
 
kura955 profile image
kura

I don't understand one thing:
Is npm install necessary in Dockerfile as well as in cloudbuild.yaml?

Collapse
 
jazst21 profile image
jazst21

Cool ! Is this means both CI CD ?

Collapse
 
mfahlandt profile image
Mario

Yes, it even takes CD one step further:

Continuous Integration (CI): short-lived feature branches, team is merging to master branch multiple times per day, fully automated build and test process which gives feedback within 10 minutes; deployment is manual.
Continuous Delivery (CD): CI + the entire software release process is automated, it may be composed of multiple stages, and deployment to production is manual.
Continuous Deployment: CI + CD + fully automated deployment to production.