Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/workflows/update-ref-docs.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -322,7 +322,7 @@ jobs:

path = Path("src/app/docs/kagent/resources/helm/temp.mdx")
text = path.read_text()
for placeholder in ("${KMCP_VERSION}", "${SUBSTRATE_VERSION}"):
for placeholder in ("${KMCP_VERSION}", "${SUBSTRATE_VERSION}", "${SUBSTRATE_REPO}"):
text = text.replace(placeholder, "`" + placeholder + "`")
path.write_text(text)
PY
Expand Down
5 changes: 4 additions & 1 deletion src/app/docs/kagent/resources/helm/page.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,7 @@ A Helm chart for kagent, built with Google ADK

| Repository | Name | Version |
|------------|------|---------|
| `${SUBSTRATE_REPO}` | substrate | `${SUBSTRATE_VERSION}` |
| file://../agents/argo-rollouts | argo-rollouts-agent | |
| file://../agents/cilium-debug | cilium-debug-agent | |
| file://../agents/cilium-manager | cilium-manager-agent | |
Expand All @@ -32,13 +33,13 @@ A Helm chart for kagent, built with Google ADK
| file://../tools/querydoc | querydoc | |
| https://oauth2-proxy.github.io/manifests | oauth2-proxy | ~7.0.0 |
| oci://ghcr.io/kagent-dev/kmcp/helm | kmcp | `${KMCP_VERSION}` |
| oci://ghcr.io/kagent-dev/substrate/helm | substrate | `${SUBSTRATE_VERSION}` |
| oci://ghcr.io/kagent-dev/tools/helm | kagent-tools | 0.2.1 |

## Values

| Key | Type | Default | Description |
|-----|------|---------|-------------|
| annotations | object | `{}` | Additional annotations to add to all Kubernetes deployment resources |
| argo-rollouts-agent.enabled | bool | `true` | |
| argo-rollouts-agent.memory.enabled | bool | `false` | |
| argo-rollouts-agent.memory.modelConfigRef | string | `""` | |
Expand Down Expand Up @@ -81,6 +82,7 @@ A Helm chart for kagent, built with Google ADK
| controller.agentImage.registry | string | `""` | |
| controller.agentImage.repository | string | `"kagent-dev/kagent/app"` | |
| controller.agentImage.tag | string | `""` | |
| controller.annotations | object | `{}` | Additional annotations to add to the controller Deployment metadata |
| controller.auth.mode | string | `"unsecure"` | |
| controller.auth.userIdClaim | string | `""` | |
| controller.env | list | `[]` | |
Expand Down Expand Up @@ -308,6 +310,7 @@ A Helm chart for kagent, built with Google ADK
| tag | string | `""` | |
| tolerations | list | `[]` | Node taints which will be tolerated for `Pod` [scheduling](https://kubernetes.io/docs/concepts/scheduling-eviction/assign-pod-node/). |
| ui.additionalForwardedHeaders | list | `[]` | Additional request headers (beyond Authorization) the UI proxy will forward to the backend. Names are case-insensitive. Hop-by-hop headers (Connection, Transfer-Encoding, etc.) are silently dropped. |
| ui.annotations | object | `{}` | Additional annotations to add to the UI Deployment metadata |
| ui.auth.ssoRedirectPath | string | `"/oauth2/start"` | |
| ui.backendInternalUrl | string | `""` | |
| ui.env | object | `{}` | |
Expand Down
Loading