Skip to main content
Tag

Slack

From Spinnaker ā€“ Future of SRE: Robert Keng Builds a DeploymentBot #withSpinnaker

By Blog, Project

Originally posted on the Spinnaker Community blog, by Rosalind Benoit

Coming soon from Chime to OSS, a software delivery chatbot which uses Slack to deploy apps via Spinnaker

Last month I had the pleasure of chatting with Robert Keng, a Lead SRE at Chime, about a Slack-integrated ChatBot he recently built to facilitate lightweight, direct deployments for developers. Chimeā€™s continuous delivery is based on Spinnaker, driven with signal-based GitOps. Via pipelines, merged release branches are auto-deployed from a continuous integration (CI) solution, through QA to production with no human interaction interaction.

However, it hasnā€™t always been this way; Chime has roots in a legacy build environment, largely for Ruby-on-Rails development. Itā€™s based on configuration management tools such as Salt, and thus not containerized, but pointed at long-lived infrastructure. So, containerization formed an important milestone in Chimeā€™s continuous delivery adoption. Luckily, according to Robert, its high-trust, growth minded culture and workflows have supported the evolution.

Chimeā€™s culture also provides flexibility that highlights Spinnakerā€™s power to accelerate digital transformation. Robert explains that, in some instances, it makes sense for developers to deploy straight to a test environment, bypassing CI. When adding a small feature to a mobile app, for example, I might want to bypass CI wait time to deploy and experiment with behavior (raise your hand if youā€˜ve built an app and never done thatā€¦didnā€™t think so!)

Meeting Chime devs where theyā€™re @

ā€œWeā€™re cutting the straight-to-prod patch fix deployments down to zero,ā€ Robert clarifies, and heā€™s done it by creating a flexible system with Spinnaker that models Chimeā€™s culture of trust. At any time, if the devs he enables would rather execute commands in Slack to deploy branches to environments of their choosing, they can. Robert has created a tool that allows them that agency, while empowering them to address complex use cases, for example, adding logic into the Slack commands to deploy dynamic environments into different Kubernetes clusters. In production, ā€œIf we need to scale customers on the Z-axis, and build multiple app versions with different backends to target different service providersā€ as deployment targets, with Spinnaker, Chime can. Robert points out:

ā€œSpinnaker offers a lot of agility in that respect. It would be hard to accommodate gitOps and chatOps in the same place without it.ā€

In a prime example of the opportunities to solve that Spinnaker provides as a platform, Robert has created a golden path which allows Chimeā€™s teams to iterate in a safe environment. To create it, Robert analyzed workflows as they are and designed an alternative workflow that mapped what he observed in Spinnaker. This, combined with the auto-deploy strategy, tells the story, written in pipelines, of how Chime engineers deliver software. This way, as an SRE, he can rely on automated guardrails for safety regardless of the deployment path. As Kelsey Hightower says, it ā€œserializes the culture in toolsā€ in a way thatā€™s seamless, painless, and purposefully abstracted.

Because at the end of the day, itā€™s not about the tools. Itā€™s about your story, which in Chimeā€™s case, is all about changing the way people feel about banking. What products and services do you delight your customers with? Whatā€™s your story? You can tell it #withSpinnaker

One DeploymentBot, Headed for OSS Spinnaker

The tool, in a multi-service design, has a component which handles the request/response communication with Slack, a frontend that leverages Okta user groups to control who can access Spinnaker, and a Python backend which processes the request data in batches. This architecture evolved from using webhooks to, at Armoryā€™s suggestion, using client certs for faster authentication, and from a monolith version to microservices, because of constraints encountered in the botā€™s development. The top constraint: the Slack Events APIā€™s requirement that a response from requests arising from message actions be received within 3 seconds.

This constraint presented challenges in actions like querying Vault for certificates to authenticate against Spinnaker, and even in token exchange with Slack. Breaking the chatbot into pieces allowed Robert to create a responsive, extensible service to deliver a full-featured experience for Chime devs. ā€œItā€™s turned into a monster,ā€ he grins. ā€œI have tons of feature requests for additional functionality alreadyā€ (because his devs love using it).

Next steps for Robertā€™s Bot include developing it against the entire Spinnaker API to leverage all features available, and adding more dynamic capability. He wants to enable devs to use the bot to deal with existing pipelines and executions, and adjust parameters and other configuration via a scripted payload directly from Slack.

Another important next step? Open-sourcing the DeploymentBot! Robertā€™s very busy with projects right now (read more below), but Iā€™ll hook him up with support from Armory engineers, if needed, to help get this invention to the masses.

The Future of Site Reliability, Platforms, and DevOps Engineering

As he describes his plans for the Bot, we start talking about the myth of NoOps. I have my own words about the opportunities and fallacies of Dev + Ops, but here, Robertā€™s voice speaks for itself:

ā€œMy team isnā€™t DevOps, itā€™s SRE (Site Reliability Engineering). DevOps is just part of what we do. As tech stacks mature, weā€™re seeing less dependency on direct hardware interaction, but that doesnā€™t mean the management complexity goes away; it actually gets worse. Hereā€™s an easy example: We have this awesome thing called Kubernetes. Given config maps and secrets, where is the source of truth? Ask anyone in the community, and theyā€™ll say, ā€˜Ummā€¦build it yourself!ā€™ I know Hashicorp released a sidecar method to inject values, but none of that is complete. This is why thereā€™s a lot of custom work in the community, and companies are building their own mutating webhook controllers, for example, which is what weā€™re doing. You canā€™t buy this stuff, because it doesnā€™t exist.

We have our own way of injecting Vault secrets which 100% bypasses Kubernetes stuff, because we canā€™t version it, and we canā€™t manage it from any source or truth, as itā€™s scattered across 1000 namespaces. Itā€™s impossible to manage in one place. So in our environment, we put everything in Vault, whether itā€™s configuration, or secrets. That gives us a common interface to code against. In V1, weā€™re using init containers, which is exactly what Hashicorpā€™s sidecar does. In V2, depending on the environment, weā€™ll grab values from different Vault clusters, since storing production and non-production values in the same place is just, suicide. Youā€™ll get a huge ban hammer from your security team, and no-one wants that.

So weā€™re building, and weā€™re operating it at the same time. And are developers ever going to touch these [tools]? No! There are a lot of these instances in Kubernetes where things just donā€™t exist, so what do you do?Same thing for, EC2, and ECS even. Then, moving into Knative, and Lambas, and serverless computing and functions, itā€™s even worse. Itā€™s a free-for-all. Weā€™re designing our own framework.

The next thing weā€™re looking at is building plugins that will plug in our code, and use Spinnaker to deploy it [on that infra]. I heard Armory is working on something similar for deploying Lambdas, and Iā€™m desperately waiting, because itā€™s going to make my life easier. Functions in general are kind of useless. The ecosystem around them is more important; youā€™ve got to think about API gateways, API management, queues, load balancers, etc. How do I wrap that into a sane framework where we can consistently build, integrate, test, and deploy? I donā€™t want to use 10 different ways to do the same thing. Iā€™d rather just have everything work in Spinnaker.ā€

Then when we start talking about making that happen. I tell Robert about the Community Gardening Days Iā€™m planning for Spinnaker this Spring (keep your eyes peeled! Announcement forthcoming on Spinnaker.io and social), and he gets psyched about Chimeā€™s involvement. Music to my ears!

Look out for more articles from me on the Spinnaker developer and contributor experience. Iā€™ll shine a light on the way Open Source Heroes like Robert are getting into the ecosystem as they enable the delivery of software products and services. Hang on, the latest industrial revolution (where software truly changes the freaking world for the better!) is just taking off.

Please share this on Twitter, LinkedIn, and HackerNews and give Robert some glory : )