Home / Docs / Charts / Generic

Generic

A multi-purpose Helm chart that can deploy virtually any container workload on Kubernetes. Instead of writing boilerplate templates for each application, the Generic chart lets you configure everything through values.yaml.

Key Features

  • Multiple workload types — Deployment, StatefulSet, DaemonSet, Job, CronJob
  • Flexible container configuration — Ports, environment variables, volumes, probes
  • Ingress support — Configurable with ingressClassName and TLS
  • Service accounts — Create or reference existing service accounts
  • Init containers and sidecars — Full support for multi-container pods
  • HPA and PDB — Autoscaling and disruption budgets

Installation

HTTPS repository:

helm repo add helmforge https://repo.helmforge.dev
helm repo update
helm install my-app helmforge/generic -f values.yaml

OCI registry:

helm install my-app oci://ghcr.io/helmforgedev/helm/generic -f values.yaml

Basic Example

Deploy a simple web application:

# values.yaml
image:
  repository: nginx
  tag: "1.27"

service:
  port: 80

ingress:
  enabled: true
  ingressClassName: traefik
  hosts:
    - host: app.example.com
      paths:
        - path: /
          pathType: Prefix

resources:
  requests:
    cpu: 100m
    memory: 128Mi
  limits:
    memory: 256Mi

StatefulSet Example

workloadType: StatefulSet

image:
  repository: my-stateful-app
  tag: "2.0"

replicaCount: 3

persistence:
  enabled: true
  size: 10Gi
  storageClass: standard

Key Values

KeyDefaultDescription
workloadTypeDeploymentWorkload type: Deployment, StatefulSet, DaemonSet, Job, CronJob
replicaCount1Number of replicas
image.repository""Container image repository
image.tag""Container image tag
service.typeClusterIPKubernetes service type
service.port80Service port
ingress.enabledfalseEnable ingress resource
resources{}CPU/memory requests and limits
persistence.enabledfalseEnable persistent storage

More Information

See the source code and full values reference on GitHub.