Kusk blog

The Three Steps of Building Design-First APIs in Kubernetes

Dec 8, 2022
6 min
read
Abdallah Abedraba
Product Leader
Kusk

Get the quickstart on the API-building process and landscape of tools for getting developer-friendly APIs to market faster.

The Three Steps of Building Design-First APIs in Kubernetes
Share on Twitter
Share on LinkedIn
Share on Reddit
Share on HackerNews
Copy URL

Table of Contents

Get started today

Every time your organization needs to create a new API from scratch on Kubernetes, you’re faced with a decision: Are we going to create and follow a process to get this job done, or are we just going to stumble our way into a deployment that we hope gets the job done?

If your organization is mature enough to follow a process, which is a great first step, you also need to decide which route to go. There are a few popular approaches to API design and development, but we’re going to hone in on the [design-first approach](https://kusk.io/blog/from-design-first-to-automated-deployment-with-openapi), because it means you’re generating the API’s specifications from the design of your API, not your code. It’s the best way to create APIs that are developer-friendly, go to market faster, and solve everyone’s problems the right way, the first time.

There are three big steps to get the job done.

## 1. Determine what business problem you’re trying to solve

You start by getting the people from technical and business units in the same room (or Zoom call) together to discuss and iterate on how the API should work and validate the design decisions you’re making before anyone even opens up an IDE.

You’ll ask questions like:

- What do we need to get buy-in from customers, leadership, developers, QA testers, IT operation?

- What kinds of naming conventions or code quality guides should we enforce?

- Which security, authentication, and authorization standards do we need?

## 2. Codify your API in a human- and machine-readable document

Once you know exactly what your team is trying to accomplish, you can start translating the business requirements and goals into an API definition using [OpenAPI](https://www.openapis.org/), which is the most broadly adopted specification for new APIs. The YAML syntax makes it approachable for technical and business folks alike.

Your goal in this step is to convert your agreed-upon design into an OpenAPI definition, a single document that details exactly how the API works, like the path(s) it responds to, what structure and type those responses should be, what security schemes the API will need, what kind of validation is required, and more.

In the end, this definition becomes your API contract: A single source of truth for how your API works on the frontend, backend, and from the end user’s perspective.

## 3. Convert the API design into code, tests and other artifacts using generators… like Kusk!

With your OpenAPI definition in Git, your teams can start writing client- and server-side code that meets those requirements. Or you can use other tools that convert your API into other valuable resources or knowledge:

- With [openapi-generator](https://openapi-generator.tech/), you can generate client- and server-side code in a variety of languages.

- Tools like [portman](https://github.com/apideck-libraries/portman) automatically create tests from your OpenAPI definition

- Complete, up-to-date, and exhaustive documentation that can be generated with [Stoplight Elements](https://stoplight.io/open-source/elements)

- Security verification against known vulnerabilities and remediation advice using tools like [42Crunch](https://42crunch.com/)

And when it comes to taking an OpenAPI definition to a live Kubernetes deployment, there’s [Kusk](https://kusk.io), an API Gateway that helps you validate, deploy, and monitor your APIs using the open-source and much-loved [Envoy Proxy](https://www.envoyproxy.io/). 

With Kusk, developers can annotate existing OpenAPI definitions to add any gateway-related configurations, like CORS rules, cache controls, rate limiting, and much more. Kusk automatically turns that under the hood into an Envoy Proxy configuration, plus the rest of the OpenAPI definition, into a functional gateway that can validate requests and consolidate your error handling.

There’s more—once you’re using Kusk, your frontend developers can use [gateway-level mocking](https://kusk.io/blog/rapidly-prototype-your-apis-on-kubernetes-with-kusk-gateway) to get started on building the end-user experience while their peers in the backend team work on implementation of the API, getting your API to production way faster.

Ready to build your next API with a design-first strategy? [Install Kusk](https://docs.kusk.io/getting-started/install-kusk-cli/) and get involved on [Discord](https://bit.ly/kubeshop-discord) to learn from others at this exciting intersection between OpenAPI and Kubernetes. The power of the API community awaits...!

Related Content