Logo

Blog

July Drumbeat

John Schnake

Jul 1, 2022

Sonobuoy Drumbeat

Now that we release on a fairly frequent basis (every 1-3 weeks) we like to present a summary of relevant changes periodically for users updating Sonobuoy.

Dealing with encoded newlines and tabs in results

When running sonobuoy results <tarball> --mode dump you get the full results of the plugins in a YAML format. The problem is that often, newlines and tabs are encoded as “\n” and “\t” making it very difficult to read large blocks of text.

We’ve now added a different mode --mode=readable which will dump the same YAML output but making it more human-friendly. This is for human-readability and not for machine parsing, which should still utilize modes detailed for JSON data or dump for the exact YAML source data.

Improving Contributor Experience and Documentation

We’ve added the CLI documentation (e.g. sonobuoy run -h) to the documentation site. This can make it easier to explore the CLI and share information about options with others.

We’ve also re-added a Makefile to the repository in order to streamline the most common build functions. The old Makefile we had as too bloated and had multiple bugs throughout the years. The new Makefile will avoid this by simply being a wrapper around the build scripts for the most common use cases. All build logic will continue to be put into the Bash build scripts, but by putting basic build/test calls into the Makefile should simplify things for new developers and users.

New Options and Commands

Sonobuoy get pods

Pods for plugins get assigned names with generated values in them, meaning that in order to query them with kubectl you first have to query the Sonobuoy namespace then copy/paste the name into your command. To make this even easier to script with, we’ve added a new command sonobuoy get pods that will grab the pod names for the plugins you’ve launched. You can also add the -p <plugin name> option to just get one of them. We hope this will make Sonobuoy even easier to combine with other tools.

Customizable Service Account

Sonobuoy now supports --service-account-name and --existing-service-account flags which will allow you to customize the SA used for the aggregator/plugins. This gives you finer control of permission when necessary.

Published Roadmap

We’ve published a roadmap for the project on the GitHub Wiki. We’ll update it periodically but our hope is that it will give you a basic insight into what we’re focusing on for the project.

Join the Sonobuoy community

Related Content

April Drumbeat: Better Output, Faster Debugging, and More Plugins

April Drumbeat: Better Output, Faster Debugging, and More Plugins

An update about the recent improvements to Sonobuoy, which include more support for sidecars, more debugging information surfaced, and unique new plugins.

Skip the Boilerplate and Start Testing

Skip the Boilerplate and Start Testing

A new plugin helper library along with the new, upstream e2e-framework helps you jump straight into your testing your business logic.

Plugin Management with Sonobuoy

Plugin Management with Sonobuoy

Sonobuoy now makes it easier to work with various plugins and configurations with built-in plugin management.

Getting Started

To help you get started, see the documentation.