Martin Zihlmann

Results 62 comments of Martin Zihlmann

make sure that the directory exists before calling `WORKDIR`. If the directory does not exist kaniko is kind enough to create it for you, but not kind enough to also...

there you go https://github.com/GoogleContainerTools/kaniko/issues/3340

I dont think the Merge will happen anytime soon. It seems kaniko went unmaintained. I would stick with the workaround for now. I might consider cutting a version for me...

If you're still looking for a solution to this you could give my fork a try https://github.com/mzihlmann/kaniko/releases/ It fixes this issue and a few more, mostly related to caching, if...

I don't think this will work with kaniko. The main selling point of kaniko is that it doesn't need any privileges to run. To the outside world it's just a...

One thing you could try is investigate which files in the image are large. If you manage to mount the volume into both where kaniko downloads the image-layers to and...

kaniko project seems to be in limbo at the moment. The workaround, as silly as it is, works flawlessly. Just make sure the folder exists before changing workdir and you're...

If you're still looking for a solution to this you could give my fork a try https://github.com/mzihlmann/kaniko/releases/ It fixes this issue and a few more, mostly related to caching, if...

labels can be excluded as well with this diff, which would indeed fix https://github.com/GoogleContainerTools/kaniko/issues/3088 ```diff + cf, err := sourceImage.ConfigFile() + if err != nil { + return nil, err...

migrated to https://github.com/GoogleContainerTools/kaniko/pull/3489