Official Helm charts for Foggy — self-hosted AI-native observability for incident investigation.
helm repo add foggy https://foggylabs.github.io/helm-charts
helm repo update
kubectl create namespace foggy
helm install foggy foggy/foggy --namespace foggyFull installation guide, RBAC reference, and upgrade instructions: https://docs.foggyhq.com/self-hosted/getting-started
- Kubernetes 1.27+
kubectlandhelm3.12+- Foggy license key (request a 30-day trial at https://foggyhq.com)
- Anthropic API key (bring your own; Foggy never proxies LLM traffic)
| Chart | Version | App version | Description |
|---|---|---|---|
| foggy | 0.2.5 |
v0.3.0 |
Foggy Console + Agent + optional bundled PostgreSQL |
Preview every Kubernetes resource the chart will create:
helm template foggy foggy/foggy | lessFor a focused RBAC review (recommended for security teams):
helm template foggy foggy/foggy \
--show-only templates/clusterrole.yaml \
--show-only templates/clusterrolebinding.yaml \
--show-only templates/serviceaccount.yamlFoggy's default Kubernetes access is read-only — get, list, watch on core workload resources (pods, pod logs, deployments, replicasets, statefulsets, daemonsets, services, endpoints, configmaps, events, nodes, namespaces). It never accesses Secrets, never executes into pods, and never writes to your cluster. See the RBAC page for the full permission table.
Apache-2.0 — see LICENSE.