A helm chart for a generic app. Deploy a basic deployment or job and override the container command.
  • Go Template 100%
Find a file
Repository files (latest commit first)
Filename Latest commit message Latest commit date
2026-06-16 11:18:05 +00:00
.forgejo clean up releaes and support httproute 2026-06-16 13:15:48 +02:00
charts/generic-app Update to version 0.2.0 and regenerate docs. 2026-06-16 11:18:05 +00:00
.pre-commit-config.yaml add precommit hook 2024-03-30 14:00:14 +01:00
AI_POLICY.md update everything to forgejo 2026-05-14 19:35:08 +02:00
README.md clean up github and old org references 2026-06-16 13:06:58 +02:00
renovate.json Update renovate.json - set automerge type to branch for github actions patch/minor updates 2025-01-23 10:42:43 +01:00

Generic App Helm Chart

This is a helm chart for a generic Kubernetes Application.

TLDR

helm repo add codeberg.org https://codeberg.org/api/packages/open-engineering/helm
helm repo update
helm install generic-app codeberg.org/generic-app

Why?

Because sometimes you don't want to write a whole helm chart for a simple app. The default chart generated with helm create my-new-chart-name is pretty good, but it's missing a couple of features. This chart can be used as a base chart for that docker container you have that you want on Kubernetes, but don't feel like writing a helm chart to make it accessible to others. Now you have no excuse :) Tip: Use this as a cheap way to get going with Argo CD Applications/ApplicationSets faster.

How?

Because this chart is basically just the stock helm chart, you can use it like any other. It defaults to just deploying the nginx container, but you can change that. In fact, you can change basically everything. We even let you disable the default service, and have an option to deploy a Job instead of (or in addition to) a Deployment.

Changing the default deployment

Here's how to get started using your own docker container

deployment:
  image:
    # -- provide this only if you're not hosting on hub.docker.com (docker.io)
    registry: ""
    # -- this can be set to any docker repo
    repository: "mydockercontainer"
    # -- docker image tag to pull
    tag: "latest"

Disabling the deployment

Sometimes you just need a job...

deployment:
  enabled: false

Enabling a job

job:
  enabled: true
  image:
    # -- provide this only if you're not hosting on hub.docker.com (docker.io)
    registry: ""
    # -- this can be set to any docker repo
    repository: "mydockercontainer"
    # -- docker image tag to pull
    tag: "latest"

Enabling the ingress

ingress:
  enabled: true

Disabling the service

service:
  enabled: false

Tips

Want to deploy on Argo CD? Checkout our example ApplicationSet.

Status

Submit any PRs you may have and please feel free to submit issues if you have a generic feature :P