Kubernetes
Deploy your application using Kubernetes
Overview
- This guide details how to deploy a GoFast application on a Kubernetes cluster with monitoring capabilities.
- The setup require a server with root access to deploy the Kubernetes cluster.
- Optionaly, you can add worker nodes to the cluster.
- Docker images are stored in the GitHub Container Registry.
- CloudNativePG is used to deploy a PostgreSQL database.
Additional note, all resources are build for the ARM64 architecture. If you are using a different architecture, please update the Dockerfiles and the deployment scripts accordingly.
Important: Run all commands from the kube
directory.
Prerequisites
Ensure the following tools are installed:
You’ll need server with root access:
- Production/Staging server (e.g.
12.34.56.78
)
Set up domains/subdomains:
- User Service (e.g.
user.gofast.live
) - Admin Service (e.g.
admin.gofast.live
) - Client Service (e.g.
client.gofast.live
) - Monitoring (e.g.
grafana.gofast.live
)
These domains should resolve to the corresponding server IP addresses:
Include AAAA records if using IPv6.
Configure Environment Variables
You’ve got two options to set the environment variables:
- Fill in the
.env
file with your secrets. - Pass the secrets as environment variables when running the scripts (preferred).
Install Kubernetes Cluster
Run the following command to set up the Kubernetes cluster:
Monitor the cluster using the k9s tool:
Authorize GitHub Container Registry
Generate a personal access token with read:packages
and write:packages
scopes from GitHub Settings.
Save it as GITHUB_ACCESS_TOKEN
env and run:
Build Docker Images
If you don’t have a builder, create one:
Build the Docker images for each service:
Replace:
$BUILD_PLATFORM
with the target platform (e.g., linux/amd64, linux/arm64)$GITHUB_REPO
with your GitHub Repo (e.g., gofast-live/gofast-app)$IMAGE_NAME
with the image name (e.g., service-user, service-admin-rc)
Set up Docker Images (Optional - For CI/CD)
Go https://github.com/OWNER/packages
and connect the images to the repository.
Then for each image, go to Package Settings -> Manage Actions Access -> Add the repository -> Change to Write.
Deploy PostgreSQL
This will add postgres to your cluster with a migration job and a backup job. Deploy a PostgreSQL database using CloudNativePG:
Deploy the Application
Check deployment status with:
Deploy Monitoring Stack
Set up the monitoring stack:
This scripts outputs the Grafana admin password.
Deploy a New Version
To deploy an updated version, build and push new images, then restart the deployments:
Auto Deploy using GitHub Actions
- Switch to the desired context:
- Encode the kubeconfig file:
-
On the GitHub repository, go to Settings > Secrets and add
KUBE_CONFIG
with the encoded kubeconfig. -
Create database url from
postgresql://${POSTGRES_USER}:${POSTGRES_PASS}@${MIGRATION_SERVER_IP}:30432/${POSTGRES_DB}?sslmode=disable
and add it to the GitHub Secrets asDATABASE_URL
. -
Modify the
deploy.yml
to match your environments and services.
Framework Specific Instructions
For the Next.js and Vue.js clients, we need to update the build environment variables.
To deploy a Next.js client, point NEXT_PUBLIC_USER_URL
inside Dockerfile to your user service URL.
To deploy a Vue.js client, point VITE_USER_URL
inside Dockerfile to your user service URL.
Was this page helpful?