From 581d0737e44840326dfd60af507d15a07a865b53 Mon Sep 17 00:00:00 2001 From: Chris Farhood Date: Sat, 21 Feb 2026 15:00:13 +0000 Subject: [PATCH] fix(chart): correct ha-mcp image tag from v6.7.1 to 6.7.1 The ghcr.io/homeassistant-ai/ha-mcp registry publishes tags without the 'v' prefix, causing ErrImagePull when the sidecar is enabled. Generated with [Claude Code](https://claude.ai/code) via [Happy](https://happy.engineering) Co-Authored-By: Claude Co-Authored-By: Happy --- CLAUDE.md | 2 +- README.md | 2 +- chart/Chart.yaml | 2 +- chart/values.yaml | 2 +- memory/MEMORY.md | 2 +- 5 files changed, 5 insertions(+), 5 deletions(-) diff --git a/CLAUDE.md b/CLAUDE.md index 2de147c..0584b1e 100644 --- a/CLAUDE.md +++ b/CLAUDE.md @@ -88,7 +88,7 @@ MCP (Model Context Protocol) servers run as sidecar containers in the pod, enabl |---------|-------|---------|------|----------|---------| | `kubernetes-mcp` | `quay.io/containers/kubernetes_mcp_server` | v0.0.57 | 8080 | `http://localhost:8080/sse` | Enabled | | `flux-mcp` | `ghcr.io/controlplaneio-fluxcd/flux-operator-mcp` | v0.41.1 | 8081 | `http://localhost:8081/sse` | Enabled | -| `homeassistant-mcp` | `ghcr.io/homeassistant-ai/ha-mcp` | v6.7.1 | 8087 | `http://localhost:8087/sse` | Disabled | +| `homeassistant-mcp` | `ghcr.io/homeassistant-ai/ha-mcp` | 6.7.1 | 8087 | `http://localhost:8087/sse` | Disabled | **Note:** - Kubernetes and Flux sidecars require `clusterAccess` != `none` to be deployed (they need RBAC permissions) diff --git a/README.md b/README.md index 4cec131..4b316e2 100644 --- a/README.md +++ b/README.md @@ -221,7 +221,7 @@ mcpSidecars: enabled: true image: repository: ghcr.io/homeassistant-ai/ha-mcp - tag: v6.7.1 # Override the pinned version if needed + tag: 6.7.1 # Override the pinned version if needed port: 8087 resources: requests: diff --git a/chart/Chart.yaml b/chart/Chart.yaml index 0915f36..c62801a 100644 --- a/chart/Chart.yaml +++ b/chart/Chart.yaml @@ -2,5 +2,5 @@ apiVersion: v2 name: devcontainer description: Antigravity Dev Container with Happy Coder AI assistant type: application -version: 0.1.21 +version: 0.1.22 appVersion: "latest" diff --git a/chart/values.yaml b/chart/values.yaml index 7dbb17f..4bd13d6 100644 --- a/chart/values.yaml +++ b/chart/values.yaml @@ -99,7 +99,7 @@ mcpSidecars: enabled: false # Disabled by default, requires HOMEASSISTANT_URL and HOMEASSISTANT_TOKEN image: repository: ghcr.io/homeassistant-ai/ha-mcp - tag: v6.7.1 # Pinned version (Feb 20, 2026) - latest stable release + tag: 6.7.1 # Pinned version (Feb 20, 2026) - latest stable release port: 8087 resources: requests: diff --git a/memory/MEMORY.md b/memory/MEMORY.md index 163c522..9a97f36 100644 --- a/memory/MEMORY.md +++ b/memory/MEMORY.md @@ -16,7 +16,7 @@ ## MCP Sidecars - **Kubernetes MCP** (v0.0.57, port 8080): Only deployed when enabled AND `clusterAccess` != `none` - **Flux MCP** (v0.41.1, port 8081): Only deployed when enabled AND `clusterAccess` != `none` -- **Home Assistant MCP** (v6.7.1, port 8087): Disabled by default, requires secrets: +- **Home Assistant MCP** (6.7.1, port 8087): Disabled by default, requires secrets: - `homeassistant-url`: Base URL like `http://homeassistant.local:8123` - `homeassistant-token`: Long-lived access token - **Playwright MCP**: External service, not a sidecar