Docsright arrowEdge Stackright arrow1.14right arrowService Preview reference

13 min • read

Service Preview has been replaced by Telepresence, these docs will remain as a historical reference. Learn more about Telepresence or go to the quick start guide.

Service Preview reference

The following is a reference for the various components of Service Preview.

See Service Preview Quick Start for detailed installation instructions.

Traffic Manager

The Traffic Manager is the central point of communication between Traffic Agents in the cluster and Edge Control Daemons on developer workstations.

The following YAML is the basic Traffic Manager installation manifests that is available for download here.

The Traffic Manager needs to be able to watch resources in the cluster so it is aware of what services are interceptable by Service Preview. The default is to provide a cluster-wide scope for this as shown above so you can run Service Preview in any namespace.

It also requires the ability to read your Ambassador Edge Stack license key from the ambassador-edge-stack Secret.

Traffic Manager options

  • Remove permission to read Secrets

    If you do not wish to grant read privileges on Secrets to the traffic-manager ServiceAccount, you may mount the ambassador-edge-stack secret containing the license key in an extra volume and reference it using the AMBASSADOR_LICENSE_FILE environment variable:

  • Run with namespace scope

    You can run the Traffic Agent without cluster-wide permissions if you only want to use service preview in a single namespace.

    To do so, you will need use the following manifest which modifies the deployment to run only in the ambassador namespace.

Traffic Agent

Any pod running in a cluster with a Traffic Manager can opt in to intercept functionality by including the Traffic Agent container.

Configuring RBAC

Since the Traffic Agent is built on Ambassador Edge Stack, it needs a subset of the same RBAC permissions that Ambassador does. The easiest way to provide this is to create a ServiceAccount in your service's namespace, bound to the traffic-agent Role or ClusterRole.

The following YAML is the basic Traffic Agent RBAC configuration manifests that is available for download here.

If you want to include the Traffic Agent with multiple services, they can all use the same ServiceAccount name, as long as it exists in every namespace.

RBAC options

  • Run with namespace scope

    You can reduce the scope of the Traffic Agent if you only want to run Service Preview in a single namespace.

    To do so, create the following RBAC roles instead of the cluster-scoped ones above:

  • Give permission to all ServiceAccounts in the Cluster

    Alternatively, if you already have specific ServiceAccounts defined for each of your pod, you may grant all of them the additional traffic-agent permissions:

Automatic Traffic Agent sidecar injection with Ambassador Injector

The Ambassador Injector automatically injects the Traffic Agent sidecar into services that you want to use Service Preview with.

It does this with a Mutating Admission Webhook that runs when pods are created in the cluster.

The Ambassador Injector can be installed in your cluster in the Ambassador namespace from [this YAML manifest]. (https://app.getambassador.io/yaml/ambassador-docs/1.14.4/ambassador-injector.yaml).

This works well for most usecase but there are a couple of important points to make sure the Ambassador Injector is able to function properly.

  • TLS certificates are required for the Ambassador Injector to authenticate with Kubernetes. The ambassador-injector.yaml provides some default certificates that can be used in development environments but this should be replaced when running in production.

  • The port the container is listening on must be defined in the Pod template. The Injector will automatically detect container ports with the name http or https and use those ports to know how to route to the container.

Take a look at the following for a more detailed look at what is included in ambassador-injector.yaml:

Manual Traffic Agent sidecar configuration

Each service that you want to work with Service Preview requires the Traffic Agent sidecar. This is typically managed by the Ambassador Injector.

The following is information on how to manually configure the Traffic Agent as a sidecar to your service.

You'll need to modify the YAML for each microservice to include the Traffic Agent. We'll start with a set of manifests for a simple microservice:

In order to run the sidecar:

  • you need to include the Traffic Agent container in the microservice pod;
  • you need to switch the microservice's Service definition to point to the Traffic Agent's listening port (using named ports such as http or https allow us to change the Pod definition without changing the Service definition); and
  • you need to tell the Traffic Agent how to set up for the microservice, using environment variables.

Here is a modified set of manifests that includes the Traffic Agent (with notes below):

Key points include:

  • Note 1: The Service now points to the Traffic Agent’s listen port (named http, 9900) instead of the application’s port (8000).
  • Note 2: The microservice's application container is actually unchanged.
  • Note 3: The Traffic Agent's container has been added.
  • Note 4: The Traffic Agent is included in the AES image.
  • Note 5: The AGENT_SERVICE environment variable is mandatory. It sets the name that the Traffic Agent will report to the Traffic Manager for this microservice: you will have to provide this name to intercept this microservice.
  • Note 6: The AGENT_PORT environment variable is mandatory. It tells the Traffic Agent the local port on which the microservice is listening.
  • Note 7: The AGENT_MANAGER_NAMESPACE environment variable tells the Traffic Agent the namespace in which it will be able to find the Traffic Manager. If not present, it defaults to the ambassador namespace.
  • Note 8: The AMBASSADOR_NAMESPACE environment variable is mandatory. It lets the Traffic Agent tell the Traffic Manager the namespace in which the microservice is running.
  • Note 9: The AMBASSADOR_SINGLE_NAMESPACE environment variable tells the Traffic Agent to watch resources only in its current namespace. This allows the traffic-agent ServiceAccount to only have Role permissions instead of a cluster-wide ClusterRole.
  • Note 10: The AGENT_LISTEN_PORT environment variable tells the Traffic Agent the port on which to listen for incoming connections. The Service must point to this port (see Note 1). If not present, it defaults to port 9900.

gRPC support

The Traffic-Agent can inspect and intercept gRPC traffic for deployments exposing gRPC endpoints instead of plain HTTP:

  • Set the getambassador.io/inject-traffic-agent-grpc: "true" pod annotation, or the AGENT_ENABLE_GRPC: "true" environment variable if injecting the sidecar manually.
  • The Traffic Agent will instruct Envoy to use HTTP/2 on its listen port (named grpc instead of http; 9900 by default)

TLS support

If other microservices in the cluster expect to speak TLS to this microservice, tell the Traffic Agent to terminate TLS:

  • Set the getambassador.io/inject-terminating-tls-secret pod annotation, or the AGENT_TLS_TERM_SECRET environment variable if injecting the sidecar manually, to the name of a Kubernetes Secret that contains a TLS certificate
  • The Traffic Agent will terminate TLS on its listen port (named https instead of http; 9900 by default) using the named certificate
  • The Traffic Agent will not accept cleartext communication when configured to terminate TLS

If this microservice expects incoming requests to speak TLS, tell the Traffic Agent to originate TLS:

  • Set the getambassador.io/inject-originating-tls-secret pod annotation, or the AGENT_TLS_ORIG_SECRET environment variable if injecting the sidecar manually, to the name of a Kubernetes Secret that contains a TLS certificate
  • The Traffic Agent will use that certificate originate HTTPS requests to the application

Ambassador Edge Stack

To enable Preview URLs, you must first enable preview URL processing in one or more Host resources. Ambassador Edge Stack uses Host resources to configure various aspects of a given host. Enabling preview URLs is as simple as adding the previewUrl section and setting enabled to true:

Note: If you already had an active Edge Control Daemon connection to the cluster, you must reconnect to the cluster for the Edge Control Daemon to detect the change to the Host resource. This limitation will be removed in the future.

What's next?

See how Edge Control commands can be used in action to establish outbound connectivity with a remote Kubernetes cluster and intercept inbound requests.