Big News!  Tilt is joining Docker

Spark joy with Tilt's resource grouping

Multiservice development means you’re often scrolling through a long list of resources and tools, while you may only be dealing with a small slice of that larger pie. How do you stay organized? Through Tilt’s new resource grouping!

Tilt’s new UI feature allows you to define and add custom labels to your resources from the Tiltfile. The Tilt dashboard then displays this list of resources in expandable and collapsible groups, so you can visually hide resources that aren’t relevant to you on the fly.

resource grouping demo

Over the last few blog posts, we’ve been talking a lot about Tilt UI’s customizability. With the new UI button extension, you can add buttons to run tasks through Tilt’s dashboard. You can replace a long list of local resources that run one-off commands with easy-to-use triggers in the UI that are displayed next to the resource(s) they’re relevant to. But what happens to that long list of services you still need to run? This is where resource grouping comes in.

With groups, you can reduce the amount of resources you have to sift through to see what’s important to you. No more naming services like store-service, store-database, store-test1, store-myspecial-cmd, etc, to group relevant services together.

You might choose to group your services by engineering expertise, so that frontend, backend, and infrastructure services are grouped separately; or you might group by type of code, so services, tests, and linters are easily accessible; or you might organize similar resources together, so that a retail store service and inventory database are grouped.

Let’s dive into an example. We’ll start with the PixelTilt example repo, which runs a simple image-editing app with several backend services. We can add a label or list of labels to any resource call, including k8s_resource(), local_resource(), and dc_resource().

Here, we can group our storage and object-detector resources with an infra label.

# k8s_resource allows customization where necessary such as adding port forwards
# https://docs.tilt.dev/api.html#api.k8s_resource
k8s_resource("frontend", port_forwards="3000")
k8s_resource("storage", port_forwards="8080", labels=["infra"])
k8s_resource("max-object-detector", new_name="object-detector", labels=["infra"])

As labels are added to resources, the dashboard will update and display the label groups. Any resources without a label will be grouped into an unlabeled section displayed at the bottom of the resource list. If a service has multiple labels, it will appear under each resource group in the UI.

adding labels with the tiltfile demo

Each group also comes with a resource status summary, so you can quickly understand the state for a subset of your services. It’s much easier to see if there’s an unhealthy resource in a particular set of services you care about.

resource grouping statuses

Organizing resources into groups in log view is just the beginning. In the near future, we’re planning to roll out grouping to our newly launched Table View. Resource grouping is also a building block for much-requested features like bulk actions (and custom bulk actions!), as well as enabling and disabling services.

You can start with labels and resource grouping by upgrading to v0.22.2. 🏷 ✨

Related

Already have a Dockerfile and a Kubernetes config?

You’ll be able to setup Tilt in no time and start getting things done. Check out the docs! 

Having trouble developing your servers in Kubernetes?