Brandon Schurman
Brandon Schurman
Sometimes we may use `ARG` with a default value that we treat as a constant. This can be useful for declaring a reusable value at build-time in an Earthfile. It's...
The new [satellite reserve endpoint](https://github.com/earthly/cloud/pull/344) wakes up a satellite if it's asleep, and calls buildkit Reserve(). It's a streaming RPC call, which returns periodic updates until the instance is awake.
# Remote cache support Currently the `CACHE` command only works with local cache, however, supporting remote cache would allow multiple users to share the same cache between runs. This may...
Feedback from a user who didn't realize the satellite need to be asleep first.
A user is reporting the following error, when running CI on a local, but re-used shared buildkit instance: ``` Error: build target: build main: failed to solve: failed to get...
**Use case** Sometimes builds can be accidentally run using emulation (qemu) when users would have the build fail instead. Running a build with emulation by mistake can be costly when...
Many earthly commands can auto-complete on tab key. For example, target names when invoking `earthly +`, or org names in `earthly secrets --org `. This would be helpful when typing...
When earthly is run with a custom buildkit host set to localhost, it should not try to automatically run an `earthly-buildkitd` container. This contradicts the docs for `buildkit-host` which say...
Some users have reported that `RUN --no-cache` statements are displayed as `*cached*` , however, these commands should never be cached. It appears this issue is not just cosmetic, i.e. the...
Added `earthly cloud` commands for managing BYOC configurations. Also tweaked some connection logic so that custom TLS certs can be used for any satellites instead of just Self-Hosted.