Skip to content

hermes-agent v0.5.7

Choose a tag to compare

@github-actions github-actions released this 29 Jun 11:27
10b48a7

πŸ‘©πŸ»β€πŸ’» 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.5.7)

helm upgrade --install hermes-agent hermes-agent/hermes-agent \
  --namespace hermes-agent --create-namespace \
  --version 0.5.7 \
  --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.5.7 \
  --set-string env.OPENAI_API_KEY='sk-...' \
  --wait

Changelog

Documentation

  • πŸ“„ docs(chart): add Agent team section to chart README (EN + KO) (314ede4) β€” @jyje