Skip to content
This repository was archived by the owner on Jan 23, 2026. It is now read-only.

Commit b960370

Browse files
authored
Merge pull request #605 from jumpstarter-dev/fix-nodeport-install
Fix nodeport install in Kind
2 parents 3076e2e + fba35bc commit b960370

File tree

1 file changed

+0
-6
lines changed
  • packages/jumpstarter-kubernetes/jumpstarter_kubernetes

1 file changed

+0
-6
lines changed

packages/jumpstarter-kubernetes/jumpstarter_kubernetes/install.py

Lines changed: 0 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -21,8 +21,6 @@ async def install_helm_chart(
2121
context: Optional[str],
2222
helm: Optional[str] = "helm",
2323
):
24-
grpc_port = grpc_endpoint.split(":")[1]
25-
router_port = router_endpoint.split(":")[1]
2624
args = [
2725
helm,
2826
"upgrade",
@@ -43,10 +41,6 @@ async def install_helm_chart(
4341
"--set",
4442
f"jumpstarter-controller.grpc.nodeport.enabled={'true' if mode == 'nodeport' else 'false'}",
4543
"--set",
46-
f"jumpstarter-controller.grpc.nodeport.port={grpc_port}",
47-
"--set",
48-
f"jumpstarter-controller.grpc.nodeport.routerPort={router_port}",
49-
"--set",
5044
f"jumpstarter-controller.grpc.mode={mode}",
5145
"--version",
5246
version,

0 commit comments

Comments
 (0)