Skip to content

hermes-agent v0.6.0

Choose a tag to compare

@github-actions github-actions released this 30 Jun 14:48
e9306f0

πŸ‘©πŸ»β€πŸ’» A Helm chart to run Hermes Agent on Kubernetes, community-powered, lightweight

Run Hermes Agent β€” a multi-provider LLM agent framework β€” on Kubernetes. Configure any provider Hermes supports (OpenAI, Anthropic, Gemini, OpenRouter, NVIDIA, or any OpenAI-compatible proxy such as LiteLLM/vLLM) entirely via values.yaml, with a built-in helm test health check.


AppVersion: v2026.6.19 β€” the Hermes Agent image this chart version deploys.

Install

Latest (Helm repo)

helm repo add hermes-agent https://jyje.github.io/hermes-agent-helm
helm repo update
helm upgrade --install hermes-agent hermes-agent/hermes-agent \
  --namespace hermes-agent --create-namespace \
  --set-string env.OPENAI_API_KEY='sk-...' \
  --wait

This version (v0.6.0)

helm upgrade --install hermes-agent hermes-agent/hermes-agent \
  --namespace hermes-agent --create-namespace \
  --version 0.6.0 \
  --set-string env.OPENAI_API_KEY='sk-...' \
  --wait

OCI

helm upgrade --install hermes-agent oci://ghcr.io/jyje/hermes-agent-helm/hermes-agent \
  --namespace hermes-agent --create-namespace \
  --version 0.6.0 \
  --set-string env.OPENAI_API_KEY='sk-...' \
  --wait

Changelog

Features

  • ✨ feat(ci): add post-release OCI signature verification workflow (88b8c09) β€” @jyje
  • Feat: add support for existingClaim in persistence configuration (#37) (e376ae5) β€” @Djiit

Bug Fixes

  • πŸ› bug(ci): pass the chat round-trip prompt via -q, not as a positional arg (d8e0092) β€” @jyje

Documentation

  • πŸ“„ docs(changelog): add v0.5.7 entry and backfill note for v0.4.2 (62e8809) β€” @jyje
  • πŸ“„ docs(contributing): add local development environment guide (9610f55) β€” @jyje
  • πŸ“„ docs: add DevOps roadmap (94c68b3) β€” @jyje
  • πŸ“„ docs(chart): sync README template with the two example value rows (ac1216f) β€” @jyje
  • πŸ“„ docs(ci): add docs/ci.md and link it from CONTRIBUTING (889f7e2) β€” @jyje

Tests

  • βœ… test(ci): run validate-chart scenarios in parallel with per-scenario timeouts (4145df8) β€” @jyje
  • βœ… test(ci): add comprehensive checks to the post-release verify job (1d22eb3) β€” @jyje