daemonless mode in kubernetes? #1212
Unanswered
dev-samples
asked this question in
Q&A
Replies: 1 comment
-
The buildx Kubernetes driver uses a Kubernetes Deployment which is a long-lived way of controlling running pod states. In my search, many people like myself are trying to improve on the Deployment model to use a Kubernetes Job model instead. |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
From jenkins running in kubernetes I currently build and push an image with:
But after the build completes the buildkitd pod is still running (created by docker buildx build).
Is it possible to specify to buildx that it should build using buildkit daemonless:
https://github.com/moby/buildkit#daemonless
I can of course manually remove it with:
but since that functionality already seems to be available in buildkit (buildctl-daemonless.sh) might be there is an option to specify that to buildx?
Beta Was this translation helpful? Give feedback.
All reactions