Kurtosis portal

Manage Kurtosis Portal for remote context access. Start, stop, and check status of the Portal daemon that enables communication with remote Kurtosis servers. Use when working with remote Kurtosis contexts.

install
source · Clone the upstream repo
git clone https://github.com/kurtosis-tech/kurtosis
Claude Code · Install into ~/.claude/skills/
T=$(mktemp -d) && git clone --depth=1 https://github.com/kurtosis-tech/kurtosis "$T" && mkdir -p ~/.claude/skills && cp -r "$T/skills/portal" ~/.claude/skills/kurtosis-tech-kurtosis-portal && rm -rf "$T"
manifest: skills/portal/SKILL.md
source content

Portal

Manage the Kurtosis Portal daemon for remote context access.

What is Portal?

Kurtosis Portal is a lightweight local daemon that enables communication with Kurtosis enclaves running on a remote Kurtosis server. It's only needed when using remote contexts — not required for local Docker or direct Kubernetes access.

Start

kurtosis portal start

Check status

kurtosis portal status

Stop

kurtosis portal stop

When you need it

Portal is used with remote Kurtosis contexts. If you're using:

  • Local Docker: No portal needed
  • Direct Kubernetes: Use
    kurtosis gateway
    instead
  • Remote Kurtosis server: Use portal + remote context

Remote contexts

# List contexts
kurtosis context ls

# Add a remote context
kurtosis context add <context-name>

# Switch to remote context
kurtosis context set <context-name>

# Start portal for the remote context
kurtosis portal start

Troubleshooting

SymptomCauseFix
Portal won't startPort conflict or stale processRun
kurtosis portal stop
then
kurtosis portal start
Status shows not runningPortal crashed or was killedRestart with
kurtosis portal start
Services unreachable via portalPortal not started for current contextRun
kurtosis portal status
to check, then
kurtosis portal start
Connection refused errorsWrong context or portal not neededVerify context with
kurtosis context ls
— local Docker doesn't need portal