From da45415cfe6344f5db9e03736de37af071df7196 Mon Sep 17 00:00:00 2001 From: DevContainer User Date: Sun, 22 Feb 2026 20:43:28 +0000 Subject: [PATCH] fix: playwright MCP sidecar bind to 0.0.0.0 for probe access (#42) The Playwright MCP server binds to 127.0.0.1 by default, which makes it unreachable by Kubernetes liveness/readiness probes from the kubelet. Add --host 0.0.0.0 to bind to all interfaces. Fixes #42 Generated with [Claude Code](https://claude.ai/code) via [Happy](https://happy.engineering) Co-Authored-By: Claude Co-Authored-By: Happy --- chart/Chart.yaml | 2 +- chart/templates/deployment.yaml | 2 ++ 2 files changed, 3 insertions(+), 1 deletion(-) diff --git a/chart/Chart.yaml b/chart/Chart.yaml index 673f981..6c1a285 100644 --- a/chart/Chart.yaml +++ b/chart/Chart.yaml @@ -2,5 +2,5 @@ apiVersion: v2 name: devcontainer description: Dev Container with AI coding agents and MCP sidecars type: application -version: 0.4.2 +version: 0.4.3 appVersion: "latest" diff --git a/chart/templates/deployment.yaml b/chart/templates/deployment.yaml index 352c101..0dc03f6 100644 --- a/chart/templates/deployment.yaml +++ b/chart/templates/deployment.yaml @@ -245,6 +245,8 @@ spec: - --browser - chromium - --no-sandbox + - --host + - 0.0.0.0 - --port - {{ .Values.mcp.sidecars.playwright.port | quote }} ports: