Skip to content
Closed
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
4 changes: 2 additions & 2 deletions charts/sample_local_helm_setup.sh
Original file line number Diff line number Diff line change
Expand Up @@ -81,15 +81,15 @@ else
helm install mcp-gateway oci://ghcr.io/kuadrant/charts/mcp-gateway \
--create-namespace \
--namespace mcp-system \
--version 0.5.0-rc1 \
--version 0.5.0 \
Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

note do we want have this also replaced based on the branch?

Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Sounds reasonable.
We could have 2 options here for sensible default as well:

  • just reference main and never update
  • the version on main default to always reference the latest released (so never an rc or main)

For the 2nd option, we could add this to the end of the RELEASING.md file

After the final release is published, update main to reference the new stable version:
  git checkout main
  git pull
  git checkout -b update-version-to-X.Y.Z
  ./scripts/set-release-version.sh X.Y.Z
  # commit, push, open PR to main

--set broker.create=true \
--set gateway.create=true \
--set gateway.name=mcp-gateway \
--set gateway.namespace=gateway-system \
--set gateway.publicHost=mcp.127-0-0-1.sslip.io \
--set gateway.nodePort.create=true \
--set gateway.nodePort.mcpPort=30080 \
--set envoyFilter.name=mcp-gateway \
--set envoyFilter.name=mcp-gateway \
--set httpRoute.create=true \
--set mcpGatewayExtension.gatewayRef.name=mcp-gateway \
--set mcpGatewayExtension.gatewayRef.namespace=gateway-system
Expand Down
2 changes: 1 addition & 1 deletion config/openshift/deploy_openshift.sh
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

set -e

MCP_GATEWAY_HELM_VERSION="${MCP_GATEWAY_HELM_VERSION:-0.5.0-rc1}"
MCP_GATEWAY_HELM_VERSION="${MCP_GATEWAY_HELM_VERSION:-0.5.0}"
MCP_GATEWAY_HOST="${MCP_GATEWAY_HOST:-mcp.apps.$(oc get dns cluster -o jsonpath='{.spec.baseDomain}')}"
MCP_GATEWAY_NAMESPACE="${MCP_GATEWAY_NAMESPACE:-mcp-system}"
GATEWAY_NAMESPACE="${GATEWAY_NAMESPACE:-gateway-system}"
Expand Down
4 changes: 3 additions & 1 deletion docs/guides/quick-start.md
Original file line number Diff line number Diff line change
Expand Up @@ -28,8 +28,10 @@ Perfect for evaluation, demos, and getting started quickly.
Run the automated setup script:

```bash
# change this to the release you want to use if looking to not use the main branch
export MCP_GATEWAY_BRANCH=main
# Download and run the setup script
curl -sSL https://raw.githubusercontent.com/Kuadrant/mcp-gateway/main/charts/sample_local_helm_setup.sh | bash
curl -sSL https://raw.githubusercontent.com/Kuadrant/mcp-gateway/refs/heads/${MCP_GATEWAY_BRANCH}/charts/sample_local_helm_setup.sh | bash
```

**Or clone the repository and run locally:**
Expand Down
Loading