Skip to content

hermes-agent v0.11.0

Latest

Choose a tag to compare

@github-actions github-actions released this 21 Jul 21:12
1ebd7e9

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

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

Changelog

Features

  • ✨ feat(chart): add extraInitContainers extension point (278ef0f) β€” @jyje
  • ✨ feat(teams): automate leader task notifications (f3e2380) β€” @jyje
  • ✨ feat(providers): add Fireworks, DeepInfra, and Upstage examples (b21fbd9) β€” @jyje
  • ✨ feat(secrets): add Bitwarden Secrets Manager values example (80b6f09) β€” @jyje

Documentation

  • πŸ“„ docs(teams): add field demo screenshots from a kind cluster (1c77fc2) β€” @jyje
  • πŸ“„ docs(roadmap): define v1 messaging baseline (1a71d1b) β€” @jyje
  • πŸ“„ docs(chart): document the config passthrough principle and add an FAQ (51056f3) β€” @jyje
  • πŸ“„ docs(chart): document unattended approvals config (3e37f0c) β€” @jyje
  • πŸ“„ docs(chart): note the multiplex-profiles alternative to multi-pod teams (42f8125) β€” @jyje
  • πŸ“„ docs(providers): add extra_headers example to the LiteLLM values file (504ff1d) β€” @jyje
  • πŸ“„ docs(providers): note Vertex credential subprocess-stripping in the values example (000276f) β€” @jyje