Helm Values Reference
This page documents the configuration values you are most likely to override when installing the runtime-operator Helm chart. For the authoritative list of every value the chart supports, run:
helm show values oci://ghcr.io/wasmcloud/charts/runtime-operator --version <version>Top-level structure
The chart's values.yaml is organized into five top-level sections:
| Section | Purpose |
|---|---|
global | Settings that apply across all components (image registry, TLS, image pull secrets) |
nats | The bundled NATS server — set enabled: false to connect an external NATS cluster instead |
operator | The wasmCloud runtime-operator deployment |
gateway | Deprecated in 2.0.3. Legacy runtime-gateway. Set enabled: false to skip installing it |
runtime | Host group deployments (pods running the wash host binary) |
global
global.image.registry
Override the container image registry for all components at once. Useful for air-gapped or mirrored deployments.
global:
image:
registry: myregistry.example.comSee Private Registries and Air-Gapped Deployments for the full mirroring workflow.
global.tls.enabled
Introduced in 2.0.3. Set to false to disable TLS for NATS connections and skip certificate generation. Intended for clusters where a service mesh (e.g. Istio, Linkerd) provides mTLS between pods.
global:
tls:
enabled: falseWhen global.tls.enabled is false, the chart ignores global.certificates.generate — no self-signed certs are created and NATS runs plaintext.
global.certificates.generate
Controls whether the chart generates self-signed TLS certificates for NATS and the control plane. Set to false when bringing your own certificate secrets. See the TLS: bring your own certificates recipe for the full BYOC flow.
operator, nats, runtime — pod labels and annotations
Introduced in 2.0.3. Each deployment accepts podLabels and podAnnotations that are merged into the pod template. This is most commonly used for service mesh injection:
operator:
podLabels:
sidecar.istio.io/inject: "true"
podAnnotations:
proxy.istio.io/config: '{"holdApplicationUntilProxyStarts": true}'
nats:
podLabels:
sidecar.istio.io/inject: "true"
runtime:
podLabels:
sidecar.istio.io/inject: "true"operator
operator.watchNamespaces
By default, the operator watches every namespace in the cluster. Set watchNamespaces to a list of namespace names to scope it down:
operator:
watchNamespaces:
- team-a
- team-bWhen watchNamespaces is populated, the chart generates namespace-scoped Role and RoleBinding resources for each listed namespace (instead of a single ClusterRole).
operator.image.tag
Defaults to the chart's appVersion. Override only when you need to pin to a specific operator build that differs from the chart release:
operator:
image:
tag: "2.0.3"The same pattern applies to gateway.image.tag and runtime.image.tag.
gateway (deprecated)
The runtime-gateway is deprecated as of 2.0.3. HTTP routing is now handled by the runtime-operator via EndpointSlices tied to user-defined Kubernetes Services. See Expose a Workload via Kubernetes Service for the replacement pattern.
To skip installing the gateway, set gateway.enabled: false.
gateway:
enabled: falseruntime
runtime.hostGroups
A host group is a Deployment of pods running the wash host. You can define multiple groups to isolate workloads or provide specialized capabilities (e.g. WebGPU-enabled hosts):
runtime:
hostGroups:
- name: default
replicas: 3
http:
enabled: true
port: 80
resources:
requests:
memory: "64Mi"
cpu: "250m"
limits:
memory: "512Mi"
cpu: "500m"
- name: gpu
replicas: 1
webgpu:
enabled: trueWorkloadDeployment manifests target a group via spec.template.spec.hostSelector.hostgroup.
runtime.hostGroups[].http.port
Starting in 2.0.3, this value is honored by the host (it was previously hardcoded). This is the port the host's HTTP server listens on inside the pod, and the port the operator populates into each managed EndpointSlice. The upstream chart default is 9191; the values.local.yaml overlay overrides it to 80 for local development.
runtime.hostGroups[].webgpu.enabled
Enables the WebGPU plugin on hosts in the group. Requires a host image built with the wasi-webgpu feature.
runtime.image.tag
Starting in 2.0.3, this value defaults to the chart's appVersion (previously defaulted to a hardcoded tag). Leave unset to track the chart release.
Related documentation
- Kubernetes Operator introduction — install and deploy walk-through
- Private Registries — mirroring images for air-gapped deployments
- TLS: bring your own certificates
- Expose a Workload via Kubernetes Service