Route traffic to a virtual service
This topic describes how to define virtual services so that Consul on Kubernetes can route traffic to virtual services when transparent proxy mode is enabled for Envoy proxies.
Overview
You can define virtual services in service resolver configuration entries so that downstream applications can send requests to a virtual service using a Consul DNS name in peered clusters. Your applications can send requests to virtual services in the same cluster using KubeDNS. Service resolvers are part of the service mesh proxy upstream discovery chain. Refer to Service mesh traffic management for additional information.
Complete the following steps to configure failover service instances in Consul on Kubernetes when proxies are in transparent proxy mode:
- Create a service resolver configuration entry.
- Create intentions that allow the downstream service to access the real service and the virtual service.
- Configure your application to call the discovery chain using the Consul DNS or KubeDNS.
Requirements
consul-k8s
v1.2.0 or newer.- Consul service mesh must be enabled. Refer to How does Consul service mesh work on Kubernetes.
- Proxies must be configured to run in transparent proxy mode.
- To query virtual DNS names, you must use Consul DNS.
- To query the discovery chain using KubeDNS, the service resolver must be in the same partition as the running service.
ACL requirements
The default ACLs that the Consul Helm chart configures are suitable for most cases, but if you have more complex security policies for Consul API access, refer to the ACL documentation for additional guidance.
Create a service resolver configuration entry
Specify the target failover in the spec.redirect.service
field in the service resolver configuration entry. In the following example, the virtual-api
service is configured to redirect to the real-api
:
Refer to the service resolver configuration entry reference documentation for information about all service resolver configurations.
You can apply the configuration using the kubectl apply
command:
Create service intentions
If intentions are not already defined, create and apply intentions that allow the appropriate downstream to access the real service and the target redirect service. In the following examples, the frontend
service is allowed to send messages to the virtual-api
and real-api
services:
Refer to the service intentions configuration entry reference for additional information about configuring service intentions.
You can apply the configuration using the kubectl apply
command:
Configure your application to call the DNS
Configure your application to contact the discovery chain in either the Consul DNS or the KubeDNS.
Consul DNS
You can query the Consul DNS using the <service>.virtual.consul
lookup format. For Consul Enterprise, your query string may need to include the namespace, partition, or both. Refer to the DNS documentation for details on building virtual service lookups.
In the following example, the application queries the Consul catalog for virtual-api
over HTTP. By default, the lookup would query the default
partition and default
namespace if Consul Enterprise manages the network infrastructure:
KubeDNS
You can query the KubeDNS if the real and virtual services are in the same Kubernetes cluster by specifying the name of the service. In the following example, the application queries KubeDNS for virtual-api
over HTTP:
Note that you cannot use KubeDNS if a corresponding Kubernetes service and pod do not exist.