Files
sai karthik c59ef9f30c
Some checks failed
Build Skills Index / build-index (push) Has been cancelled
Build Skills Index / deploy-with-index (push) Has been cancelled
Lint (ruff + ty) / ruff + ty diff (push) Has been cancelled
Lint (ruff + ty) / ruff enforcement (blocking) (push) Has been cancelled
Lint (ruff + ty) / Windows footguns (blocking) (push) Has been cancelled
Nix / nix (macos-latest) (push) Has been cancelled
Nix / nix (ubuntu-latest) (push) Has been cancelled
Tests / test (1) (push) Has been cancelled
Tests / test (2) (push) Has been cancelled
Tests / test (3) (push) Has been cancelled
Tests / test (4) (push) Has been cancelled
Tests / test (5) (push) Has been cancelled
Tests / test (6) (push) Has been cancelled
Tests / e2e (push) Has been cancelled
OSV-Scanner / Scan lockfiles (push) Has been cancelled
Tests / save-durations (push) Has been cancelled
Add Hermes Helm chart
2026-05-25 11:21:25 +05:30
..
2026-05-25 11:21:25 +05:30
2026-05-25 11:21:25 +05:30
2026-05-25 11:21:25 +05:30
2026-05-25 11:21:25 +05:30

Hermes Helm Chart

This chart deploys the Hermes Agent image from the private Gitea registry.

The current git.openputer.com/common/hermes:latest image is amd64-only, so the default values schedule pods on amd64 nodes.

Registry Secret

Create the registry pull secret in the target namespace before installing:

kubectl create namespace hermes
kubectl create secret docker-registry gitea-registry \
  --namespace hermes \
  --docker-server=git.openputer.com \
  --docker-username='<username>' \
  --docker-password='<token-or-password>'

Install

helm upgrade --install hermes ./charts/hermes \
  --namespace hermes \
  --create-namespace

Check

kubectl get pods -n hermes
kubectl logs -n hermes deploy/hermes

Dashboard

The dashboard is disabled by default. If you enable it, keep it behind authentication or a private tunnel.

helm upgrade --install hermes ./charts/hermes \
  --namespace hermes \
  --set env.HERMES_DASHBOARD=1 \
  --set env.HERMES_DASHBOARD_HOST=0.0.0.0 \
  --set service.enabled=true