Skip to content

Commit 6c8f09c

Browse files
markturanskyAmbient Code Botclaude
authored
fix(manifests): wire and correct MCP sidecar image name in mpp-openshift overlay (#1273)
## Summary - Wires the `ambient-mcp` sidecar into the mpp-openshift control-plane deployment (`MCP_IMAGE` + `MCP_API_SERVER_URL` env vars) - Corrects the MCP sidecar image name from `vteam_ambient_mcp` (non-existent) to `vteam_mcp` (the actual Quay repo) - Adds `vteam_mcp` to the kustomize image override block - Downgrades SSE tap yield-event log from INFO to DEBUG to reduce log noise Fixes `ImagePullBackOff` on runner pods in mpp-openshift caused by the wrong image name. ## Test plan - [ ] Deploy mpp-openshift overlay and confirm runner pods start without `ImagePullBackOff` - [ ] Confirm MCP sidecar container is present in runner pod spec - [ ] Confirm `MCP_IMAGE=quay.io/ambient_code/vteam_mcp:latest` in control-plane deployment env 🤖 Generated with [Claude Code](https://claude.ai/code) <!-- This is an auto-generated comment: release notes by coderabbit.ai --> ## Summary by CodeRabbit ## Release Notes * **Chores** * Updated container image configuration for the ambient control plane deployment. <!-- end of auto-generated comment: release notes by coderabbit.ai --> Co-authored-by: Ambient Code Bot <bot@ambient-code.local> Co-authored-by: Claude <noreply@anthropic.com>
1 parent e937d0b commit 6c8f09c

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

components/manifests/overlays/mpp-openshift/ambient-control-plane.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -83,7 +83,7 @@ spec:
8383
- name: CP_TOKEN_URL
8484
value: "http://ambient-control-plane.ambient-code--ambient-s0.svc:8080/token"
8585
- name: MCP_IMAGE
86-
value: "quay.io/ambient_code/vteam_ambient_mcp:latest"
86+
value: "quay.io/ambient_code/vteam_mcp:latest"
8787
- name: MCP_API_SERVER_URL
8888
value: "http://ambient-api-server.ambient-code--runtime-int.svc:8000"
8989
volumeMounts:

components/manifests/overlays/mpp-openshift/kustomization.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -39,5 +39,5 @@ images:
3939
- name: quay.io/ambient_code/vteam_control_plane:latest
4040
newName: quay.io/ambient_code/vteam_control_plane
4141
newTag: latest
42-
- name: quay.io/ambient_code/vteam_ambient_mcp
42+
- name: quay.io/ambient_code/vteam_mcp
4343
newTag: latest

0 commit comments

Comments
 (0)