-
Notifications
You must be signed in to change notification settings - Fork 159
New issue
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
feat(CLI): Support context #92
Comments
cc @FogDong |
It seems we could save the contexts into the config file, something like:
We could add a new subcommand, say |
BTW this issue reminds me that docker cli supports context now: https://docs.docker.com/engine/context/working-with-contexts/ |
Yeah, the design LGTM although envd does not support k8s now. We can support different docker contexts currently. |
We may need to support two different context types: build and run. The context for the build is to determine what buildkit will be used in envd. For example, buildkit container in the docker daemon Users may expect to use the buildkit on Kubernetes for CI. Ref #510 The context for the run will be used when running |
The user experience for the build may look like this:
The user experience for the run may look like this:
The default builder should be |
@rudeigerc Hi are you still interested in the issue? Users expect it in the next release to support #510 |
@gaocegege I am a little bit running out of time recently. Please feel free to unassign me if other ones are interested in this issue. |
Description
context is used to switch between the backends (e.g. docker, kubernetes)
The text was updated successfully, but these errors were encountered: