import Alert from ‘@material-ui/lab/Alert’; import GettingStartedEmissary21Tabs from ‘./gs-tabs’
We’ll start by installing $productName$ into your cluster.
We recommend using Helm but there are other options below to choose from.
Now is a great moment to connect your new installation to Ambassador Cloud in order to fully leverage the power of $productName$ and the Developer Control Plane (DCP).
Log in to Ambassador Cloud with GitHub, GitLab or Google and select your team account.
At the top, click Add Services then click Connection Instructions in the “Connect your installation” section.
Follow the prompts to name the cluster and click Generate a Cloud Token.
Follow the prompts to install the cloud token into your cluster.
When the token installation completes, your services will be listed in the DCP.
$productName$ uses Kubernetes Custom Resource Definitions (CRDs) to declaratively define its desired state. The workflow you are going to build uses a simple demo app, a Listener
CRD, and a Mapping
CRD. The Listener
CRD tells $productName$ what port to listen on, and the Mapping
CRD tells $productName$ how to route incoming requests by host and URL path from the edge of your cluster to Kubernetes services.
Start by creating a Listener
resource for HTTP on port 8080:
kubectl apply -f - <<EOF
---
apiVersion: getambassador.io/v3alpha1
kind: Listener
metadata:
name: $productDeploymentName$-listener-8080
namespace: $productNamespace$
spec:
port: 8080
protocol: HTTP
securityModel: XFP
hostBinding:
namespace:
from: ALL
EOF
Listener
will associate with all Host
s in your cluster. This is fine for the quickstart, but is likely not what you really want for production use.Listener
.Host
.Apply the YAML for the “Quote” service.
kubectl apply -f https://app.getambassador.io/yaml/v2-docs/$ossVersion$/quickstart/qotm.yaml
kubectl get services,deployments quote
to see their status.
Mapping
to tell $productName$ to route all traffic inbound to the /backend/
path to the quote
Service.In this step, we’ll be using the Mapping Editor, which you can find in the service details view of your Ambassador Cloud connected installation. Open your browser to https://app.getambassador.io/cloud/services/quote/details and click on New Mapping.
Default options are automatically populated. Enable and configure the following settings, then click Generate Mapping:
- Path Matching: /backend/
- OpenAPI Docs: /.ambassador-internal/openapi-docs

Whether you decide to automatically push the change to Git for this newly create Mapping resource or not, the resulting Mapping should be similar to the example below.
Apply this YAML to your target cluster now.
kubectl apply -f - <<EOF
---
apiVersion: getambassador.io/v3alpha1
kind: Mapping
metadata:
name: quote-backend
spec:
hostname: "*"
prefix: /backend/
service: quote
docs:
path: "/.ambassador-internal/openapi-docs"
EOF
export LB_ENDPOINT=$(kubectl -n $productNamespace$ get svc $productDeploymentName$ \
-o "go-template={{range .status.loadBalancer.ingress}}{{or .ip .hostname}}{{end}}")
$ curl -i http://$LB_ENDPOINT/backend/
HTTP/1.1 200 OK
content-type: application/json
date: Wed, 23 Jun 2021 15:49:02 GMT
content-length: 137
x-envoy-upstream-service-time: 0
server: envoy
{
"server": "ginormous-kumquat-7mkgucxo",
"quote": "Abstraction is ever present.",
"time": "2021-06-23T15:49:02.255042819Z"
}
Listener
and Mapping
, routing a request from your cluster’s edge to a service!
Explore some of the popular tutorials on $productName$:
Mappings
: declaratively routes traffic from
the edge of your cluster to a Kubernetes serviceListener
resource: configure ports, protocols, and security options for your ingress.Host
resource: configure a hostname and TLS options for your ingress.$productName$ has a comprehensive range of features to support the requirements of any edge microservice.
To learn more about how $productName$ works, read the $productName$ Story.
Was this page helpful?
Glad to hear it! Please tell us how we can improve.
Sorry to hear that. Please tell us how we can improve.