Last, but absolutely not least, is Tilt. Tilt is my favorite development tool by far. Tilt is also very comprehensive and flexible. It is centered around a Tiltfile written in a language called Starlark (https://github.com/bazelbuild/starlark/), which is a subset of Python. I was hooked right way. What's special about Tilt is that it goes beyond just building an image automatically and deploying it to the cluster or syncing files. It actually gives you a complete live development environment that presents a lot of information, highlights events and errors, and lets you drill down and understand what's happening in your cluster. Let's get started.
Let's install Tilt and then get to business:
brew tap windmilleng/tap brew install windmilleng/tap/tilt ...