Alex Couture-Beil
Alex Couture-Beil
> I'd encourage you to consider other ways to addressing any security concerns before jumping to additional configuration. You've won us over! By saying `.env` is broken and improperly mixes...
I put together #1822 which allows users to set: ``` global: secret_provider: ``` in `~/.earthly/config.yml` where `user-supplied-secret-provider` is a user-supplied program that looks like: ``` #!/bin/sh set -e if [...
@mattt I just had a quick glance -- Are you asking about using it to retrieve credentials for cloning via https? or in a more generic key/value store? In the...
Expanding on this, these are the four dependencies and what work needs to be done to fix this: * [ ] git+https://github.com/StackStorm/logshipper.git@stackstorm_patched#egg=logshipper - Forked from the [`stackstorm_patched` branch of Kami/logshipper](https://github.com/Kami/logshipper/tree/stackstorm_patched)...
> I think for most providers flags and env vars (both provided in the config field and the global ones) should be enough, so I guess the need for separate...
Here's a more concrete example of the work-around: ``` FROM alpine workaround: RUN echo "#!/bin/sh set -e cp /etc/hosts /tmp/hosts && \ umount /etc/hosts && \ cp /tmp/hosts /etc/hosts &&...
> The primary problem I have at the moment (possibly a result of the way I did my hack) is that earthly "solves" multiple times in one invocation For this...
repro-case for 100MB of data: ``` mkdir -p ~/test/lots-of-data cd ~/test/lots-of-data for i in $(seq 1 100); do dd if=/dev/urandom of=$i bs=1M count=1; echo $i; done cat > Earthfile
This has been expanded to support `FINALLY`.
This has been changed to allow: ``` TRY ... FINALLY ... END ``` using `CATCH` now causes an error -- we'll re-evaluate supporting `CATCH` once we figure out how to...