-
Notifications
You must be signed in to change notification settings - Fork 1.2k
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
[k8s plugin] Kubernetes:Run command should work w/o Docker #13316
Comments
I've experimented with Buildah here by wrapping its calls into |
|
@azatsarynnyy Can we change the extension itself to use |
@gorkem it shouldn't take much time to add support for |
@azatsarynnyy Can you provide a PR to upstream and ping me. Perhaps something that detects if buildah exists or docker not working and opts to the other. |
@gorkem ok, I'll tackle it next week |
Reopening it to work on adding Buildah support to VS Code Kubernetes Tools extension upstream project. |
Buildah support has been added to VS Code Kubernetes extension vscode-kubernetes-tools/vscode-kubernetes-tools#559 It's included to the recently published v1.0.1 The next steps are:
|
depends on #13702 |
Fixed for K8s in eclipse-che/che-theia#510 |
The Kubernetes Tooling Che Plugin provides
Kubernetes: Run
command that does the following steps:docker build
docker push
kubectl run
Previously, the user should log into an image registry with
docker login
.Since we can't use Docker daemon in a plugin sidecar, the goal of this task is to replace using Docker by the K8s Plugin with some rootless image build tool, e.g. Buildah.
The text was updated successfully, but these errors were encountered: