We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
--ports
0.89.16
I remove one of my services using
kurtosis service rm $enclave $service
& then I start it again:
kurtosis service add $enclave $service --ports="service=http:3000/tcp"
My service is a quart app running on port 3000, this is the configuration to bring it up the first time:
plan.add_service( name="myservice", config=ServiceConfig( image="myort/myservice:latest", ports={"service": PortSpec(number=3000, wait=None)}, ), )
The service should come up, but it stalls forever. Without the --ports flag it comes up fine.
Painful; this is causing significant friction in my workflow.
CLI: the Command Line Interface
The text was updated successfully, but these errors were encountered:
Nevermind, it was an error on my side.
Sorry, something went wrong.
No branches or pull requests
What's your CLI version?
0.89.16
Description & steps to reproduce
I remove one of my services using
& then I start it again:
My service is a quart app running on port 3000, this is the configuration to bring it up the first time:
Desired behavior
The service should come up, but it stalls forever. Without the
--ports
flag it comes up fine.What is the severity of this bug?
Painful; this is causing significant friction in my workflow.
What area of the product does this pertain to?
CLI: the Command Line Interface
The text was updated successfully, but these errors were encountered: