Skip to content

Commit 3492223

Browse files
authored
adds new port values for MCPServer CRD (#2330)
* adds new port values for MCPServer Signed-off-by: ChrisJBurns <[email protected]> * bumps chart Signed-off-by: ChrisJBurns <[email protected]> --------- Signed-off-by: ChrisJBurns <[email protected]>
1 parent e2e4614 commit 3492223

File tree

3 files changed

+21
-4
lines changed

3 files changed

+21
-4
lines changed

deploy/charts/operator-crds/Chart.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,5 +2,5 @@ apiVersion: v2
22
name: toolhive-operator-crds
33
description: A Helm chart for installing the ToolHive Operator CRDs into Kubernetes.
44
type: application
5-
version: 0.0.44
5+
version: 0.0.45
66
appVersion: "0.0.1"

deploy/charts/operator-crds/README.md

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

22
# ToolHive Operator CRDs Helm Chart
33

4-
![Version: 0.0.44](https://img.shields.io/badge/Version-0.0.44-informational?style=flat-square)
4+
![Version: 0.0.45](https://img.shields.io/badge/Version-0.0.45-informational?style=flat-square)
55
![Type: application](https://img.shields.io/badge/Type-application-informational?style=flat-square)
66

77
A Helm chart for installing the ToolHive Operator CRDs into Kubernetes.

deploy/charts/operator-crds/crds/toolhive.stacklok.dev_mcpservers.yaml

Lines changed: 19 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -150,6 +150,12 @@ spec:
150150
image:
151151
description: Image is the container image for the MCP server
152152
type: string
153+
mcpPort:
154+
description: McpPort is the port that MCP server listens to
155+
format: int32
156+
maximum: 65535
157+
minimum: 1
158+
type: integer
153159
oidcConfig:
154160
description: OIDCConfig defines OIDC authentication configuration
155161
for the MCP server
@@ -330,7 +336,9 @@ spec:
330336
x-kubernetes-preserve-unknown-fields: true
331337
port:
332338
default: 8080
333-
description: Port is the port to expose the MCP server on
339+
description: |-
340+
Port is the port to expose the MCP server on
341+
Deprecated: Use ProxyPort instead
334342
format: int32
335343
maximum: 65535
336344
minimum: 1
@@ -344,6 +352,13 @@ spec:
344352
- sse
345353
- streamable-http
346354
type: string
355+
proxyPort:
356+
default: 8080
357+
description: ProxyPort is the port to expose the proxy runner on
358+
format: int32
359+
maximum: 65535
360+
minimum: 1
361+
type: integer
347362
resourceOverrides:
348363
description: ResourceOverrides allows overriding annotations and labels
349364
for resources created by the operator
@@ -472,7 +487,9 @@ spec:
472487
If not specified, a ServiceAccount will be created automatically and used by the MCP server.
473488
type: string
474489
targetPort:
475-
description: TargetPort is the port that MCP server listens to
490+
description: |-
491+
TargetPort is the port that MCP server listens to
492+
Deprecated: Use McpPort instead
476493
format: int32
477494
maximum: 65535
478495
minimum: 1

0 commit comments

Comments
 (0)