DZone
Thanks for visiting DZone today,
Edit Profile
  • Manage Email Subscriptions
  • How to Post to DZone
  • Article Submission Guidelines
Sign Out View Profile
  • Post an Article
  • Manage My Drafts
Over 2 million developers have joined DZone.
Log In / Join
Refcards Trend Reports Events Over 2 million developers have joined DZone. Join Today! Thanks for visiting DZone today,
Edit Profile Manage Email Subscriptions Moderation Admin Console How to Post to DZone Article Submission Guidelines
View Profile
Sign Out
Refcards
Trend Reports
Events
Zones
Culture and Methodologies Agile Career Development Methodologies Team Management
Data Engineering AI/ML Big Data Data Databases IoT
Software Design and Architecture Cloud Architecture Containers Integration Microservices Performance Security
Coding Frameworks Java JavaScript Languages Tools
Testing, Deployment, and Maintenance Deployment DevOps and CI/CD Maintenance Monitoring and Observability Testing, Tools, and Frameworks
Partner Zones AWS Cloud
by AWS Developer Relations
Culture and Methodologies
Agile Career Development Methodologies Team Management
Data Engineering
AI/ML Big Data Data Databases IoT
Software Design and Architecture
Cloud Architecture Containers Integration Microservices Performance Security
Coding
Frameworks Java JavaScript Languages Tools
Testing, Deployment, and Maintenance
Deployment DevOps and CI/CD Maintenance Monitoring and Observability Testing, Tools, and Frameworks
Partner Zones
AWS Cloud
by AWS Developer Relations
The Latest "Software Integration: The Intersection of APIs, Microservices, and Cloud-Based Systems" Trend Report
Get the report
  1. DZone
  2. Software Design and Architecture
  3. Microservices
  4. Guidance for Building a Control Plane for Envoy: Domain Specific Configuration API

Guidance for Building a Control Plane for Envoy: Domain Specific Configuration API

In this post, a microservice's expert explains how to establish domain-specific configuration objects and APIs that best fit your use cases and organization.

Christian Posta user avatar by
Christian Posta
·
Mar. 11, 19 · Tutorial
Like (1)
Save
Tweet
Share
3.73K Views

Join the DZone community and get the full member experience.

Join For Free

This is Part 3 of a series that explores building a control plane for Envoy Proxy.

In this blog series, we’ll take a look at the following areas:

  • Adopting a mechanism to dynamically update Envoy’s routing, service discovery, and other configuration.
  • Identifying what components make up your control plane, including backing stores, service discovery APIs, security components, et. al.
  • Establishing any domain-specific configuration objects and APIs that best fit your use cases and organization (this entry).
  • Thinking of how best to make your control plane pluggable where you need it.
  • Options for deploying your various control-plane components.
  • Thinking through a testing harness for your control plane.

In the previous entry, we evaluated the components you may need for your control plane. In this section, we explore what a domain-specific API might look like for your control plane.

Establishing Your Control-Plane Interaction Points and API Surface

Once you’ve thought through what components might make up your control-plane architecture (see previous), you’ll want to consider exactly how your users will interact with the control plane and maybe even more importantly, who will your users be? To answer this you’ll have to decide what roles your Envoy-based infrastructure will play and how traffic will traverse your architecture. It could be a combination of:

  • API Management gateway (north/south).
  • Simple Kubernetes edge load balancer/reverse proxy/ingress control (north/south).
  • Shared services proxy (east/west).
  • Per-service sidecar (east/west).

For example, the Istio project is intended to be a platform service mesh that platform operators can build tools upon to drive control of the network between your services and applications. Istio’s domain-specific configuration objects for configuring Envoy center around the following objects:

  • Gateway – define a shared proxy component (capable of cluster ingress) that specifies the protocol, TLS, port, and host/authority that can be used to load balance and route traffic.
  • VirtualService – rules for how to interact with a specific service; can specify things like route matching behavior, timeouts, retries, etc.
  • DestinationRule – rules for how to interact with a specific service in terms of circuit breaking, load balancing, mTLS policy, subset definitions of a service, etc.
  • ServiceEntry – explicitly add a service to Istio’s service registry.

Running in Kubernetes, all of those configuration objects are implemented as CustomResourceDefinitions.

Heptio/VMWare Contour is intended as a Kubernetes ingress gateway and has a simplified domain-specific configuration model with both a CustomResourceDefinition (CRD) flavor as well as a Kubernetes Ingress resource

  • IngressRoute which is a Kubernetes CRD that provides a single location to specify configuration for the Contour proxy.
  • Ingress Resource support which allows you to specify annotations on your Kubernetes Ingress resource if you’re into that kind of thing.

On the Gloo project we’ve made the decision to split the available configuration objects into two levels:

  • The user-facing configurations for best ergonomics of user use cases and leave options for extensibility (more on that in next section).
  • The lower-level configuration that abstracts Envoy but is not expressly intended for direct user manipulation. The higher-level objects get transformed to this lower-level representation which is ultimately what’s used to translate to Envoy xDS APIs. The reasons for this will be clear in the next section.

For users, Gloo focuses on teams owning their routing configurations since the semantics of the routing (and the available transformations/aggregation capabilities) are heavily influenced by the developers of APIs and microservices. For the user-facing API objects, we use:

  • Gateway – specify the routes and API endpoints available at a specific listener port as well as what security accompanies each API.
  • VirtualService – groups API routes into a set of “virtual APIs” that can route to backed functions (gRPC, HTTP/1, HTTP/2, lambda, etc.); gives the developer control over how a route proceeds with different transformations in an attempt to decouple the front-end API from what exists in the backend (and any breaking changes a backend might introduce).

Note these are different than the Istio variants of these objects.

The user-facing API objects in Gloo drive the lower-level objects which are then used to ultimately derive the Envoy xDS configurations. For example, Gloo’s lower-level, core API objects are:

  • Upstream – captures the details about backend clusters and the functions that are exposed on this. You can loosely associate a Gloo Upstream with an Envoy cluster with one big difference: an upstream can understand the actual service functions available at a specific endpoint (in other words, it knows about /foo/bar and /bar/wine including their expected parameters and parameter structure rather than just hostname:port). More on that in a second.
  • Proxy – The proxy is the main object that abstracts all of the configurations we can apply to Envoy. This includes listeners, virtual hosts, routes, and upstreams. The higher-level objects (VirtualService, Gateway, etc.) are used to drive this lower-level Proxy object.

The split between the two levels of configuration for the Gloo control allows us to extend the Gloo control-plane capabilities while keeping a simple abstraction to configure Envoy. This is explained in more detail in Part 4 of this series.

In the previous three examples (Istio, Contour, and Gloo) each respective control plane exposes a set of domain-specific configuration objects that are user-focused but are ultimately transformed into Envoy configuration and exposed over the xDS data plane API. This provides a decoupling between Envoy and a user’s predisposed way of working and their workflows. Although we’ve seen a few examples of creating a more user- and workflow-focused domain-specific configuration for abstracting Envoy, that’s not the only way to build up an Envoy control plane. Booking.com has a great presentation on how they stayed much closer to the Envoy configurations and used an engine to just merge all the different teams’ configuration fragments into the actual Envoy configuration.

Alongside considering a domain-specific configuration, you should consider the specific touch points of your API/object model. For example, Kubernetes is very YAML and resource-file focused. You could build a more domain-specific CLI tool (like OpenShift did with the oc CLI, like Istio did with istioctl and like Gloo did with glooctl

Takeaway

When you build an Envoy control plane, you’re doing so with a specific intent or set of architectures/users in mind. You should take this into account and build the right ergonomic, opinionated domain-specific API that suits your users and improves your workflow for operating Envoy. The Gloo team recommends exploring existing Envoy control plane implementations and only building your own if none of the others are suitable. Gloo’s control plane lays the foundation to be extended and customized. As we’ll see in the next entry, it’s possible to build a control plane that is fully extendable to fit many different users, workflows, and operational constraints.

API Envoy (WordPerfect) Kubernetes Object (computer science) microservice

Published at DZone with permission of Christian Posta, DZone MVB. See the original article here.

Opinions expressed by DZone contributors are their own.

Popular on DZone

  • Reconciling Java and DevOps with JeKa
  • Key Elements of Site Reliability Engineering (SRE)
  • Benefits and Challenges of Multi-Cloud Integration
  • Securing Cloud-Native Applications: Tips and Tricks for Secure Modernization

Comments

Partner Resources

X

ABOUT US

  • About DZone
  • Send feedback
  • Careers
  • Sitemap

ADVERTISE

  • Advertise with DZone

CONTRIBUTE ON DZONE

  • Article Submission Guidelines
  • Become a Contributor
  • Visit the Writers' Zone

LEGAL

  • Terms of Service
  • Privacy Policy

CONTACT US

  • 600 Park Offices Drive
  • Suite 300
  • Durham, NC 27709
  • support@dzone.com
  • +1 (919) 678-0300

Let's be friends: