Egress Gateways with TLS Origination
The TLS Origination for Egress Traffic1 example shows how to configure Istio to perform TLS origination for traffic to an external service. The
Configure an Egress Gateway2 example shows how to configure Istio to direct egress traffic through a dedicated egress gateway service. This example combines the previous two by describing how to configure an egress gateway to perform TLS origination for traffic to external services.Before you begin
Setup Istio by following the instructions in the Installation guide3.
Start the sleep4 sample which will be used as a test source for external calls.
If you have enabled automatic sidecar injection, do
otherwise, you have to manually inject the sidecar before deploying the
sleep
application:Note that any pod that you can
exec
andcurl
from would do.Create a shell variable to hold the name of the source pod for sending requests to external services. If you used the sleep4 sample, run:
Perform TLS origination with an egress gateway
This section describes how to perform the same TLS origination as in the TLS Origination for Egress Traffic1 example, only this time using an egress gateway. Note that in this case the TLS origination will be done by the egress gateway, as opposed to by the sidecar in the previous example.
Define a
ServiceEntry
foredition.cnn.com
:Verify that your
ServiceEntry
was applied correctly by sending a request to http://edition.cnn.com/politics6.Your
ServiceEntry
was configured correctly if you see 301 Moved Permanently in the output.Create an egress
Gateway
for edition.cnn.com, port 443, and a destination rule for sidecar requests that will be directed to the egress gateway.Choose the instructions corresponding to whether or not you want to enable mutual TLS Authentication7 between the source pod and the egress gateway.
Define a
VirtualService
to direct the traffic through the egress gateway, and aDestinationRule
to perform TLS origination for requests toedition.cnn.com
:Send an HTTP request to http://edition.cnn.com/politics6.
The output should be the same as in the TLS Origination for Egress Traffic1 example, with TLS origination: without the 301 Moved Permanently message.
Check the log of the
istio-egressgateway
pod and you should see a line corresponding to our request. If Istio is deployed in theistio-system
namespace, the command to print the log is:You should see a line similar to the following:
Cleanup the TLS origination example
Remove the Istio configuration items you created:
Perform mutual TLS origination with an egress gateway
Similar to the previous section, this section describes how to configure an egress gateway to perform TLS origination for an external service, only this time using a service that requires mutual TLS.
This example is considerably more involved because you need to first:
- generate client and server certificates
- deploy an external service that supports the mutual TLS protocol
- redeploy the egress gateway with the needed mutual TLS certs
Only then can you configure the external traffic to go through the egress gateway which will perform TLS origination.
Generate client and server certificates and keys
Clone the https://github.com/nicholasjackson/mtls-go-example8 repository:
Change directory to the cloned repository:
Generate the certificates for
nginx.example.com
. Use any password with the following command:Select
y
for all prompts that appear.Move the certificates into the
nginx.example.com
directory:Go back to your previous directory:
Deploy a mutual TLS server
To simulate an actual external service that supports the mutual TLS protocol, deploy an NGINX9 server in your Kubernetes cluster, but running outside of the Istio service mesh, i.e., in a namespace without Istio sidecar proxy injection enabled.
Create a namespace to represent services outside the Istio mesh, namely
mesh-external
. Note that the sidecar proxy will not be automatically injected into the pods in this namespace since the automatic sidecar injection was not enabled on it.Create Kubernetes Secrets10 to hold the server’s and CA certificates.
Create a configuration file for the NGINX server:
Create a Kubernetes ConfigMap11 to hold the configuration of the NGINX server:
Deploy the NGINX server:
Define a
ServiceEntry
and aVirtualService
fornginx.example.com
to instruct Istio to direct traffic destined tonginx.example.com
to your NGINX server:
Deploy a container to test the NGINX deployment
Create Kubernetes Secrets10 to hold the client’s and CA certificates:
Deploy the sleep4 sample with mounted client and CA certificates to test sending requests to the NGINX server:
Define an environment variable to hold the name of the
sleep
pod:Use the deployed sleep4 pod to send requests to the NGINX server. Since
nginx.example.com
does not actually exist and therefore DNS cannot resolve it, the followingcurl
command uses the--resolve
option to resolve the hostname manually. The IP value passed in the –resolve option (1.1.1.1 below) is not significant. Any value other than 127.0.0.1 can be used. Normally, a DNS entry exists for the destination hostname and you would not use the--resolve
option ofcurl
.Verify that the server requires the client’s certificate:
Redeploy the egress gateway with the client certificates
Create Kubernetes Secrets10 to hold the client’s and CA certificates.
Generate the
istio-egressgateway
deployment with a volume to be mounted from the new secrets. Use the same options you used for generating youristio.yaml
:Redeploy
istio-egressgateway
:Verify that the key and the certificate are successfully loaded in the
istio-egressgateway
pod:tls.crt
andtls.key
should exist in/etc/istio/nginx-client-certs
, whileca-chain.cert.pem
in/etc/istio/nginx-ca-certs
.
Configure mutual TLS origination for egress traffic
Create an egress
Gateway
fornginx.example.com
, port 443, and destination rules and virtual services to direct the traffic through the egress gateway and from the egress gateway to the external service.Define a
VirtualService
to direct the traffic through the egress gateway, and aDestinationRule
to perform mutual TLS origination:Send an HTTP request to
http://nginx.example.com
:Check the log of the
istio-egressgateway
pod for a line corresponding to our request. If Istio is deployed in theistio-system
namespace, the command to print the log is:You should see a line similar to the following:
Cleanup the mutual TLS origination example
Remove created Kubernetes resources:
Delete the directory of certificates and the repository used to generate them:
Delete the generated configuration files used in this example:
Cleanup
Delete the sleep
service and deployment: