Configuration¶
Helmless works by templating and deploying a Helm chart.
Helm charts are configured using the values.yaml
file.
For Helmless you have two options:
- Create a new application Helm chart and add the Helmless charts as dependencies
- Directly provide the
values.yaml
file to Helmless and use the Github Action that will automatically pick the Helmless charts to render
Option 1: Create a new application Helm chart¶
This is the recommended approach, which brings the following benefits:
- Use a dependency update mechanism like dependabot
- Use Helm compatible tools, like intellisense and linting
- Deploy multiple applications from the same chart and share values between them
To get started, create a new Helm chart and remove the default templates and values.yaml file.
Add the Helmless charts as dependencies to your Helm chart.
dependencies:
- name: google-cloudrun-service
version: 0.3.0
repository: oci://ghcr.io/helmless
alias: service
- name: google-cloudrun-job
version: 0.3.0
repository: oci://ghcr.io/helmless
alias: job
You can add multiple services and jobs to the same chart, just make sure to use different aliases.
The config above will allow you to configure the values.yaml
like this:
- These global values are shared between all services and jobs
- You can use YAML anchors to share values between the service and job
- The common env variables are spread out and can be overridden or extended by the service and job specific variables
- This is a job only variable and will not be used by the service
You can template the Cloud Run manifests with the following command:
In the Github Action you can deploy the application with the following workflow. See Github Deployment Action for more details.
name: 🚀 Deploy Cloud Run Service
on:
workflow_dispatch:
push:
branches: [main]
jobs:
deploy:
name: 🚀 helmless-service
runs-on: ubuntu-24.04
permissions:
contents: read
id-token: write
steps:
- name: 📥 Checkout Repository
uses: actions/checkout@v4
- name: 🔑 Google Auth
id: auth
uses: google-github-actions/auth@v2
with:
workload_identity_provider: ${{ secrets.GCP_WORKLOAD_IDENTITY_POOL }}
- name: 🚀 Deploy Service
uses: helmless/google-cloudrun-action@v1
id: deploy
with:
chart: my-app/
Option 2: Directly provide the values.yaml
file¶
This is less complex and creates another abstraction layer for your developers, hiding the Helm charts from them. It comes with the downside that you have no out-of-the-box dependency update mechanism and no Helm tooling support.
To use this option, you can directly provide the values.yaml
file to Helmless and use the Github Action that will automatically pick the Helmless charts to render.
You can locally template the Cloud Run Service manifest with the following command:
helm template oci://ghcr.io/helmless/google-cloudrun-service \
-f my-app/values.yaml \
> my-app/service.yaml
In the Github Action you can deploy the application with the following workflow. See Github Deployment Action for more details.
name: 🚀 Deploy Cloud Run Service
on:
workflow_dispatch:
push:
branches: [main]
jobs:
deploy:
name: 🚀 helmless-service
runs-on: ubuntu-24.04
permissions:
contents: read
id-token: write
steps:
- name: 📥 Checkout Repository
uses: actions/checkout@v4
- name: 🔑 Google Auth
id: auth
uses: google-github-actions/auth@v2
with:
workload_identity_provider: ${{ secrets.GCP_WORKLOAD_IDENTITY_POOL }}
- name: 🚀 Deploy Service
uses: helmless/google-cloudrun-action@v1
id: deploy
with:
type: service # or job
values: |
my-app/values.yaml
Environment Overrides¶
You can override the environment variables for a specific environment by adding a values.<environment>.yaml
file in the application directory.
This will override the MY_ENV_VAR
environment variable to dev-value
for the dev
environment.
You can also override the global values by adding a values.<environment>.yaml
file in the application directory.
This will override the project
value to dev-project
for the dev
environment.
Then extend your Github Action workflow to include the environment values file.
name: 🚀 Deploy Cloud Run Service
on:
workflow_dispatch:
push:
branches: [main]
jobs:
deploy:
name: 🚀 helmless-service
runs-on: ubuntu-24.04
permissions:
contents: read
id-token: write
steps:
- name: 📥 Checkout Repository
uses: actions/checkout@v4
- name: 🔑 Google Auth
id: auth
uses: google-github-actions/auth@v2
with:
workload_identity_provider: ${{ secrets.GCP_WORKLOAD_IDENTITY_POOL }}
- name: 🚀 Deploy Service
uses: helmless/google-cloudrun-action@v1
id: deploy
with:
type: service # or job
values: |
my-app/values.yaml
my-app/values.dev.yaml
You can extract this into a reusable workflow and use matrix deployments to deploy to multiple environments.