Helm chart repository for Last9 observability platform.
helm repo add last9 https://last9.github.io/charts
helm repo update
helm search repo last9| Chart | Description | Docs |
|---|---|---|
last9-k8s-infra |
Kubernetes telemetry (logs, metrics, events, traces) via upstream OpenTelemetry Collector | README |
l9gpu |
Vendor-agnostic GPU telemetry for AI/ML and HPC clusters (NVIDIA, AMD, Gaudi) | source |
helm upgrade --install last9 last9/last9-k8s-infra \
--namespace last9 --create-namespace \
--set last9.otlpEndpoint=https://otlp.last9.io \
--set last9.writeToken="Basic <base64>" \
--set last9.cluster.name=my-clusterOCI:
helm upgrade --install last9 oci://ghcr.io/last9/charts/last9-k8s-infra \
--version 0.1.0 \
--namespace last9 --create-namespace \
--set last9.otlpEndpoint=https://otlp.last9.io \
--set last9.writeToken="Basic <base64>" \
--set last9.cluster.name=my-clusterGPU telemetry for AI/ML clusters (NVIDIA, AMD, Intel Gaudi). Canonical source: last9/gpu-telemetry.
kubectl create secret generic l9gpu-otlp -n monitoring \
--from-literal=OTEL_EXPORTER_OTLP_ENDPOINT=https://otlp.last9.io \
--from-literal=OTEL_EXPORTER_OTLP_HEADERS='Authorization=Basic <base64>'
helm install l9gpu last9/l9gpu -n monitoring --create-namespace \
--set monitoring.sink=otel \
--set monitoring.cluster=my-cluster \
--set otlpSecretName=l9gpu-otlpOCI (canonical from gpu-telemetry repo):
helm install l9gpu oci://ghcr.io/last9/gpu-telemetry/l9gpu --version 0.2.1 -n monitoringIssues + PRs welcome. Charts follow Helm best practices.
Lint + install test via ct:
ct lint --config .github/ct.yaml --target-branch main
ct install --config .github/ct.yaml --target-branch mainMIT — see LICENSE.