alfonsocloud.com

CI/CD Pipeline to GKE

Tools used:

Node.js React ChatGPT Git GitHub GitHub Actions Docker Kubernetes Terraform GCP
GCP Logo

View the app live

Access the chatbot app hosted on a GCP project using Google Kubernetes Engine.

CI/CD DevOps Logo CI/CD DevOps Logo

View project on Github

Copy the repo and host your own app on your own GCP project. Automatically! 🎉

The cool thing about this project is not the chatbot itself—you can use it to deploy any type of app. With just one push of a button, you can have your own containerized application up and running on GCP in minutes, fully accessible online and automatically scalable with Kubernetes!

This repository is a complete example of how to deploy an application (in this case, a ChatGPT-based chatbot) to Google Cloud Platform (GCP) using:

Deployment

On every commit to the main branch, the workflow will:

  1. Check out the code.
  2. Build & push a Docker image to Docker Hub
  3. Provision or update the GKE Autopilot cluster using Terraform.
  4. Deploy the container image and Kubernetes manifests to that cluster.
  5. Wait for the external IP, then post a comment with the link to access the app.

Architecture Diagram

Prerequisites

  1. Google Cloud Account
  2. Service Account
    • In your GCP project, go to IAM & Admin > Service Accounts and create a service account with the following roles:
      • Kubernetes Engine Admin (it needs to create/manage/update the cluster)
      • Compute Viewer (it needs to see the default compute engine service account)
      • Service Account Admin (it needs to grant itself access to the default compute engine service account)
      • Service Usage Admin (it needs to enable the appropiate APIs)
      • Click DONE
    • Generate a JSON key for this service account:
      1. Go to IAM & Admin > Service Accounts in the GCP Console.
      2. Click on the service account.
      3. Click Keys, then Add key > Create new key.
      4. Choose JSON and download the file. Save that JSON file locally; you’ll need its contents soon.
  3. (Optional) Docker Hub Account
    • If you want to build & push your own custom Docker image:
      1. Create a Docker Hub account if you don’t have one.
      2. Create a public repository (e.g., username/kubernetes-chatbot).
      3. Generate a Personal Access Token (in Account Settings > Security > New Access Token) with read, write, delete permissions.
      4. Copy and save the access token key; you’ll need it later.
    • If you prefer not to push your own images, you can skip this. The workflow will use a default image from this repo’s Docker Hub (but that means you won’t see your changes if you modify the code).

Fork & Configure the Repository

  1. Fork this repo into your own GitHub account.
  2. Access the Secrets page:
    In your forked repo, go to Settings > Secrets and variables > Actions.
    Click New repository secret for each of the following variables, named exactly as shown.

Required Secrets

Optional Secrets

These are only needed if you want to build and push your own Docker image. If you skip them, the workflow will just deploy the default image.

Deploying the Architecture

  1. Enable GitHub Actions
    After setting all secrets, go to the Actions tab in your forked repo and enable workflows if prompted.
  2. Commit to main branch
    Any commit or push to the main branch triggers the workflow. You can edit the README.md file and push the change (do a false commit).
  3. Watch GitHub Actions
    Go to Actions tab in your repo.
    Click the latest workflow to see how the architecture is being built in real-time.
    Click build_and_deploy
    The first run may take up to 15 minutes (Terraform is creating the cluster).
  4. Access the App
    After completion, look for the step labeled ***Show External IP*** near the end of the workflow.
    Click the link, and you’ll see the live chatbot (or your own custom app) hosted on GKE!
    If the page doesn’t load immediately, wait a couple of minutes — it may take some time for the changes to fully propagate.
  5. (Optional) Explore Your GKE Cluster
    Visit the Google Cloud Console and navigate to Kubernetes Engine > Clusters.
    There, you can inspect your deployed Autopilot GKE cluster.

Developing your own Custom App

Conclusion

That’s it! You now have a CI/CD pipeline that:

Enjoy your scalable, auto-deployed app powered by Google Kubernetes Engine! If you have questions or run into any issues, feel free to open a discussion or look at the logs in the Actions tab for troubleshooting.

Happy Deploying!
— Alfonso Monserrat