Sylvain Prat
Sylvain Prat
I am running buildx v0.12.0 and buildkit v0.12.5 and the problem seems to be solved now!
Note: I also tried to put the `guest` option in a `mountOptions` field inside a secret referenced in the storage class parameters, but it does not work either, it's even...
After some iterations, I finally found one way to make it work: 1. create a secret containing `mountOptions: guest` 2. use this secret for `csi.storage.k8s.io/provisioner-secret-name` but not for `csi.storage.k8s.io/node-stage-secret-name` (otherwise...
Yes, I have finally understood how it works, but it was after some trials and errors! That's why I suggest to either better document or simplify the process (if possible,...
I would also like to use multi-stage builds and to define the output of `docker buildx build`, for example to export some files from an image to the local filesystem...
Would love a buildx's bakefile and/or docker-compose-file frontend that would build the specified images concurrently.
I agree, a `bake --watch` would be awesome!
Thanks for the answer. I think I must clarify what I meant. I see containerized development as an ideal way to have both the developers workstations and CI use the...
I have the same problem. I am not sure how I can workaround the problem... I don't have direct access to my K8S cluster because it lies in a subnet...
I've found a way to workaround the issue: ```tf resource "terraform_data" "talos_image_hash" { input = filesha512("assets/talos.qcow2") } resource "oci_objectstorage_object" "talos_image" { bucket = oci_objectstorage_bucket.os_images.name namespace = data.oci_objectstorage_namespace.main.namespace object = "talos.qcow2"...