Define API gateway routes on virtual machines
This topic describes how to configure HTTP and TCP routes and attach them to Consul API gateway listeners. Routes are rule-based configurations that allow external clients to send requests to services in the mesh.
Overview
The following steps describe the general workflow for defining and deploying routes:
- Define routes in an HTTP or TCP configuration entry. The configuration entry includes rules for routing requests, target services in the mesh for the traffic, and the name of the gateway to attach to.
- Deploy the configuration entry to create the routes and attach them to the gateway.
Routes and the gateways they are attached to are eventually-consistent objects. They provide feedback about their current state through a series of status conditions. As a result, you must manually check the route status to determine if the route is bound to the gateway successfully.
Requirements
The following requirements must be satisfied to use API gateways on VMs:
- Consul 1.15 or later
- A Consul cluster with service mesh enabled. Refer to
connect
- Network connectivity between the machine deploying the API Gateway and a Consul cluster agent or server
ACL requirements
If ACLs are enabled, you must present a token with the following permissions to configure Consul and deploy API gateway routes:
Refer Mesh Rules for additional information about configuring policies that enable you to interact with Consul API gateway configurations.
Define the routes
Define route configurations and bind them to listeners configured on the gateway so that Consul can route incoming requests to services in the mesh.
Create a route configuration entry file and specify the following settings:
Kind
: Set tohttp
ortcp
.Name
: Specify a name for the route. The name is metadata that you can use to reference the configuration when performing Consul operations.Parents
: Specifies a list of API gateways that the route binds to.Rules
: If you are configuring HTTP routes, define a list of routing rules for constructing a routing table that maps listeners to services. Each member of the list is a map that may containing the following fields:
Refer to the HTTP route configuration entry and TCP route configuration entry reference for details about configuring routes.
Configure any additional fields necessary for your use case, such as the namespace or admin partition.
Save the configuration.
The following example routes requests from the listener on the API gateway at port 8443
to services in Consul based on the path of the request. When an incoming request starts at path /
, Consul forwards 90 percent of the requests to the ui
service and 10 percent to experimental-ui
. Consul also forwards requests starting with /api
to api
.
Deploy the route configuration
Run the consul config write
command to attach the routes to the specified gateways. The following example writes a configuration called my-http-route.hcl
: