Skip to content
Merged
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
7 changes: 4 additions & 3 deletions cmd/thv-operator/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -139,7 +139,8 @@ metadata:
spec:
image: docker.io/mcp/fetch
transport: stdio
port: 8080
proxyPort: 8080
mcpPort: 8080
resources:
limits:
cpu: "100m"
Expand Down Expand Up @@ -167,8 +168,8 @@ metadata:
namespace: toolhive-system
spec:
image: ghcr.io/github/github-mcp-server
transport: stdio
port: 8080
proxyPort: 8080
mcpPort: 8080
secrets:
- name: github-token
key: token
Expand Down
4 changes: 2 additions & 2 deletions examples/operator/external-auth/complete_example.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -57,8 +57,8 @@ spec:
transport: streamable-http
tools:
- fetch
port: 8080
targetPort: 8080
proxyPort: 8080
mcpPort: 8080

# Reference to external auth configuration
externalAuthConfigRef:
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -17,8 +17,8 @@ spec:
- fetch

# Port configuration
port: 8080
targetPort: 8080
proxyPort: 8080
mcpPort: 8080

# Reference to external authentication configuration
# The MCPExternalAuthConfig must be in the same namespace
Expand Down
4 changes: 2 additions & 2 deletions examples/operator/mcp-servers/mcpserver_fetch_otel.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -6,8 +6,8 @@ metadata:
spec:
image: ghcr.io/stackloklabs/gofetch/server
transport: streamable-http
port: 8080
targetPort: 8080
proxyPort: 8080
mcpPort: 8080
resources:
limits:
cpu: "100m"
Expand Down
2 changes: 1 addition & 1 deletion examples/operator/mcp-servers/mcpserver_mkp.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -6,8 +6,8 @@ metadata:
spec:
image: ghcr.io/stackloklabs/mkp/server
transport: streamable-http
targetPort: 8080
proxyPort: 8080
mcpPort: 8080
args:
# Change to true for read-write access.
- --read-write=false
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ metadata:
spec:
image: docker.io/mcp/fetch
transport: stdio
port: 8080
proxyPort: 8080
oidcConfig:
type: inline
inline:
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ metadata:
spec:
image: "ghcr.io/stackloklabs/gofetch/server"
transport: stdio
port: 8080
proxyPort: 8080
---
# To trigger a rolling restart:
# kubectl annotate mcpserver my-server mcpserver.toolhive.stacklok.dev/restarted-at="$(date -u +%Y-%m-%dT%H:%M:%SZ)" --overwrite
Expand Down
2 changes: 1 addition & 1 deletion examples/operator/vault/mcpserver-github-with-vault.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ metadata:
spec:
image: ghcr.io/github/github-mcp-server:latest
transport: stdio
port: 9095
proxyPort: 9095
resources:
limits:
cpu: '100m'
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ metadata:
spec:
image: ghcr.io/stackloklabs/yardstick/yardstick-server:0.0.2
transport: stdio
port: 8080
proxyPort: 8080

# Reference to external authentication configuration
externalAuthConfigRef:
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ spec:
env:
- name: TRANSPORT
value: stdio
port: 8080
proxyPort: 8080
resources:
limits:
cpu: "100m"
Expand Down
Loading