Skip to content

Commit a260959

Browse files
authored
Merge pull request #1061 from Patryk-Stefanski/release-0.7.0-rc1
Update version to 0.7.0-rc1
2 parents f9935a3 + f595af0 commit a260959

14 files changed

Lines changed: 23 additions & 23 deletions

bundle/manifests/mcp-gateway.clusterserviceversion.yaml

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -5,14 +5,14 @@ metadata:
55
alm-examples: "[\n {\n \"apiVersion\": \"mcp.kuadrant.io/v1alpha1\",\n \"kind\": \"MCPGatewayExtension\",\n \"metadata\": {\n \"name\": \"mcp-gateway-extension\",\n \"namespace\": \"mcp-system\"\n },\n \"spec\": {\n \"targetRef\": {\n \"group\": \"gateway.networking.k8s.io\",\n \"kind\": \"Gateway\",\n \"name\": \"mcp-gateway\",\n \"namespace\": \"gateway-system\",\n \"sectionName\": \"mcp\"\n }\n }\n },\n {\n \"apiVersion\": \"mcp.kuadrant.io/v1alpha1\",\n \"kind\": \"MCPServerRegistration\",\n \"metadata\": {\n \"name\": \"example-server\",\n \"namespace\": \"mcp-test\"\n },\n \"spec\": {\n \"prefix\": \"example_\",\n \"targetRef\": {\n \"group\": \"gateway.networking.k8s.io\",\n \"kind\": \"HTTPRoute\",\n \"name\": \"example-route\"\n }\n }\n },\n {\n \"apiVersion\": \"mcp.kuadrant.io/v1alpha1\",\n \"kind\": \"MCPVirtualServer\",\n \"metadata\": {\n \"name\": \"example-vs\",\n \"namespace\": \"default\"\n },\n \"spec\": {\n \"description\": \"example virtual server\",\n \"tools\": [\n \"server1_tool1\",\n \"server2_tool2\"\n ]\n }\n }\n]"
66
capabilities: Basic Install
77
categories: Integration & Delivery
8-
containerImage: ghcr.io/kuadrant/mcp-controller:latest
9-
createdAt: "2026-05-27T17:36:10Z"
8+
containerImage: ghcr.io/kuadrant/mcp-controller:v0.7.0-rc1
9+
createdAt: "2026-05-29T09:20:43Z"
1010
description: An Envoy-based gateway for Model Context Protocol (MCP) servers
1111
operators.operatorframework.io/builder: operator-sdk-v1.38.0
1212
operators.operatorframework.io/project_layout: go.kubebuilder.io/v4
1313
repository: https://github.com/Kuadrant/mcp-gateway
1414
support: kuadrant
15-
name: mcp-gateway.v0.0.0
15+
name: mcp-gateway.v0.7.0-rc1
1616
namespace: placeholder
1717
spec:
1818
apiservicedefinitions: {}
@@ -181,8 +181,8 @@ spec:
181181
- --log-level=0
182182
env:
183183
- name: RELATED_IMAGE_ROUTER_BROKER
184-
value: ghcr.io/kuadrant/mcp-gateway:latest
185-
image: ghcr.io/kuadrant/mcp-controller:latest
184+
value: ghcr.io/kuadrant/mcp-gateway:v0.7.0-rc1
185+
image: ghcr.io/kuadrant/mcp-controller:v0.7.0-rc1
186186
imagePullPolicy: IfNotPresent
187187
livenessProbe:
188188
httpGet:
@@ -242,6 +242,6 @@ spec:
242242
name: Kuadrant
243243
url: https://kuadrant.io
244244
relatedImages:
245-
- image: ghcr.io/kuadrant/mcp-gateway:latest
245+
- image: ghcr.io/kuadrant/mcp-gateway:v0.7.0-rc1
246246
name: router-broker
247-
version: 0.0.0
247+
version: 0.7.0-rc1

charts/sample_local_helm_setup.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ set -e
77

88
# Allow specifying a different GitHub org/user and version via environment variables
99
GITHUB_ORG=${MCP_GATEWAY_ORG:-Kuadrant}
10-
VERSION=${MCP_GATEWAY_VERSION:-0.5.1}
10+
VERSION=${MCP_GATEWAY_VERSION:-0.7.0-rc1}
1111
GIT_REF="v${VERSION}"
1212
USE_LOCAL_CHART=${USE_LOCAL_CHART:-false}
1313
echo "Using GitHub org: $GITHUB_ORG"

config/deploy/olm/catalogsource.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ metadata:
44
name: mcp-gateway-catalog
55
spec:
66
sourceType: grpc
7-
image: ghcr.io/kuadrant/mcp-controller-catalog:main
7+
image: ghcr.io/kuadrant/mcp-controller-catalog:v0.7.0-rc1
88
displayName: MCP Gateway
99
grpcPodConfig:
1010
securityContextConfig: restricted

config/manifests/bases/mcp-gateway.clusterserviceversion.yaml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -55,11 +55,11 @@ metadata:
5555
]
5656
capabilities: Basic Install
5757
categories: Integration & Delivery
58-
containerImage: ghcr.io/kuadrant/mcp-controller:latest
58+
containerImage: ghcr.io/kuadrant/mcp-controller:v0.7.0-rc1
5959
description: An Envoy-based gateway for Model Context Protocol (MCP) servers
6060
repository: https://github.com/Kuadrant/mcp-gateway
6161
support: kuadrant
62-
name: mcp-gateway.v0.0.0
62+
name: mcp-gateway.v0.7.0-rc1
6363
namespace: placeholder
6464
spec:
6565
customresourcedefinitions:
@@ -119,4 +119,4 @@ spec:
119119
provider:
120120
name: Kuadrant
121121
url: https://kuadrant.io
122-
version: 0.0.0
122+
version: 0.7.0-rc1

config/mcp-gateway/components/controller/deployment-controller.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -20,14 +20,14 @@ spec:
2020
serviceAccountName: mcp-controller
2121
containers:
2222
- name: mcp-controller
23-
image: ghcr.io/kuadrant/mcp-controller:latest
23+
image: ghcr.io/kuadrant/mcp-controller:v0.7.0-rc1
2424
imagePullPolicy: IfNotPresent
2525
command:
2626
- ./mcp_controller
2727
- --log-level=0 # info level
2828
env:
2929
- name: RELATED_IMAGE_ROUTER_BROKER
30-
value: ghcr.io/kuadrant/mcp-gateway:latest
30+
value: ghcr.io/kuadrant/mcp-gateway:v0.7.0-rc1
3131
ports:
3232
- name: health
3333
containerPort: 8081

config/mcp-system/deployment-broker.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ spec:
2525
secretName: mcp-gateway-config
2626
containers:
2727
- name: mcp-broker-router
28-
image: ghcr.io/kuadrant/mcp-gateway:latest
28+
image: ghcr.io/kuadrant/mcp-gateway:v0.7.0-rc1
2929
imagePullPolicy: IfNotPresent
3030
command:
3131
- ./mcp_gateway

config/mcp-system/deployment-controller.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ spec:
2121
serviceAccountName: mcp-controller
2222
containers:
2323
- name: mcp-controller
24-
image: ghcr.io/kuadrant/mcp-controller:latest
24+
image: ghcr.io/kuadrant/mcp-controller:v0.7.0-rc1
2525
imagePullPolicy: IfNotPresent
2626
command:
2727
- ./mcp_controller

config/openshift/deploy_openshift.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
set -e
44

5-
MCP_GATEWAY_VERSION="${MCP_GATEWAY_VERSION:-local}"
5+
MCP_GATEWAY_VERSION="${MCP_GATEWAY_VERSION:-0.7.0-rc1}"
66
MCP_GATEWAY_HOST="${MCP_GATEWAY_HOST:-mcp.apps.$(oc get dns cluster -o jsonpath='{.spec.baseDomain}')}"
77
MCP_GATEWAY_NAMESPACE="${MCP_GATEWAY_NAMESPACE:-mcp-system}"
88
GATEWAY_NAMESPACE="${GATEWAY_NAMESPACE:-gateway-system}"

docs/guides/how-to-install-and-configure.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ MCP Gateway runs on Kubernetes and integrates with Gateway API and Istio. You sh
2727
### Step 1: Install CRDs
2828

2929
```bash
30-
export MCP_GATEWAY_VERSION=0.5.1
30+
export MCP_GATEWAY_VERSION=0.7.0-rc1
3131
kubectl apply -k "https://github.com/kuadrant/mcp-gateway/config/crd?ref=v${MCP_GATEWAY_VERSION}"
3232
```
3333

docs/guides/isolated-gateway-deployment.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ helm upgrade -i mcp-controller oci://ghcr.io/kuadrant/charts/mcp-gateway \
3333
## Step 1: Install MCP Gateway CRDs
3434

3535
```bash
36-
export MCP_GATEWAY_VERSION=0.5.1
36+
export MCP_GATEWAY_VERSION=0.7.0-rc1
3737
kubectl apply -k "https://github.com/kuadrant/mcp-gateway/config/crd?ref=v${MCP_GATEWAY_VERSION}"
3838
```
3939

0 commit comments

Comments
 (0)