user1584

Results 12 comments of user1584

As described in #3815, I try to configure GitVersion to follow the [GitFlow](https://datasift.github.io/gitflow/IntroducingGitFlow.html) strategy with as little human versioning as possible. According to the [GitVersion documentation](https://gitversion.net/docs/learn/branching-strategies/gitflow/examples#hotfix-branches), the hotfix branches must...

Yes, that was one of the first things I tried. For the original build it did not make a difference. I have not tried it again with the dummy build...

I just tested the `--compressed-caching=false` option and it does not solve the problem but reduced the impact. I ran the pipeline with and without the option and it failed at...

The test uses the python:3.11 image, which has a size of [340.88 MB](https://hub.docker.com/layers/library/python/3.11/images/sha256-9c88ce9c15d69674c0d5da21e6ba45d91cd12010e92825ef0e60e5184c9453ad?context=explore). When run locally with docker, the resulting image has the same size. I would expect the test...

BTW, we use private Gitlab runners. Here's the memory usage during the build: ![image](https://user-images.githubusercontent.com/105428966/234300622-f1705ec1-970d-4e8e-871c-9e4ced454522.png) At stage 34 and a memory usage of ~11 GB, the build was stopped by kubernetes...

I let kaniko build just the first three stages of my test. Here you can see that each stage is saved in /kaniko/stages : ![image](https://user-images.githubusercontent.com/105428966/236177514-72081c2a-cbcf-4642-bbe3-f671f122b950.png) Thus, each stage adds the...

`--single-snapshot` was already included in all the tests I did. It did not seem to change the general behavior.

> how about this? https://github.com/GoogleContainerTools/kaniko?tab=readme-ov-file#flag---snapshot-mode I tried the different options and they did not make much of a difference.

I get the same 'error: X | Y syntax for unions requires Python 3.10 [syntax]' for the following file: ``` import pydantic_settings class Temp(pydantic_settings.BaseSettings): pass ``` I'm pretty sure there's...

Thanks for the incredibly quick answer! How/where does pydantic-settings decide whether a type is a complex field or simple enough to pass the content of the environment variable directly? Is...