You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository has been archived by the owner on Nov 3, 2023. It is now read-only.
First of all, I'm glad to see that you're still busy making cool stuff in the container space 😊
I stumbled upon kubectl-build thanks to its Tilt plugin, and I've been playing with it a bit for my Kubernetes workshops (specifically to enable a "100% Kubernetes" scenario where we wouldn't necessarily rely on Docker to build images, since it may or may not be available on our clusters).
After playing a bit with it, I wonder - is there a fundamental difference between using kubectl build, and using docker buildx build (after doing docker buildx create --driver=kubernetes --use, of course)? Is it kind of the same (but with some extra bells and whistles, like the automatic setup of the builder, the use of a registry secret, maybe more...) or is there something fundamentally different between the two?
Thank you! ♥
(PS sorry for the initially blank message; I fat-fingered my keyboard😅)
The text was updated successfully, but these errors were encountered:
jpetazzo
changed the title
Differences between "kubectl build" and "docker-buildx
Differences between "kubectl build" and "docker buildx build"?
Dec 10, 2021
This project began life as a fork of buildx refactored as a kubectl CLI plugin. We had considered trying to keep the codebase aligned to be able to flow fixes/features back and forth, but as we refactored the code, this ultimately didn't look like the optimal path. Ultimately, I'd think of this as a kubectl based BuildKit client. One of the key goals to call out is making sure images are available in the local container runtime without requiring a registry. Over time we'd like to continue to enhance the capabilities for developers wanting to build images within k8s.
Sign up for freeto subscribe to this conversation on GitHub.
Already have an account?
Sign in.
Hi!
First of all, I'm glad to see that you're still busy making cool stuff in the container space 😊
I stumbled upon
kubectl-build
thanks to its Tilt plugin, and I've been playing with it a bit for my Kubernetes workshops (specifically to enable a "100% Kubernetes" scenario where we wouldn't necessarily rely on Docker to build images, since it may or may not be available on our clusters).After playing a bit with it, I wonder - is there a fundamental difference between using
kubectl build
, and usingdocker buildx build
(after doingdocker buildx create --driver=kubernetes --use
, of course)? Is it kind of the same (but with some extra bells and whistles, like the automatic setup of the builder, the use of a registry secret, maybe more...) or is there something fundamentally different between the two?Thank you! ♥
(PS sorry for the initially blank message; I fat-fingered my keyboard😅)
The text was updated successfully, but these errors were encountered: