Ambassador Tutorial
In this tutorial, we'll walk through some of the key features and workflow of Ambassador.
Create a Mapping
In a typical configuration workflow, Custom Resource Definitions (CRDs) are used to define the intended behavior of Ambassador Edge Stack. In this demo, we'll deploy a sample service and create a Mapping
resource. Mappings allow you to associate parts of your domain with different URLs, IP addresses, or prefixes.
We'll start by deploying the
quote
service. Save the below configuration into a file namedquote.yaml
. This is a basic configuration that tells Kubernetes to deploy thequote
container and create a Kubernetesservice
that points to thequote
container.---apiVersion: v1kind: Servicemetadata:name: quotenamespace: ambassadorspec:ports:- name: httpport: 80targetPort: 8080selector:app: quote---apiVersion: apps/v1kind: Deploymentmetadata:name: quotenamespace: ambassadorspec:replicas: 1selector:matchLabels:app: quotestrategy:type: RollingUpdatetemplate:metadata:labels:app: quotespec:containers:- name: backendimage: docker.io/datawire/quote:0.4.1ports:- name: httpcontainerPort: 8080Deploy the
quote
service to the cluster by typing the commandkubectl apply -f quote.yaml
Now, create a
Mapping
configuration that tells Ambassador to route all traffic from/backend/
to thequote
service. Copy the following YAML and save it to a file calledquote-backend.yaml
---apiVersion: getambassador.io/v2kind: Mappingmetadata:name: quote-backendnamespace: ambassadorspec:prefix: /backend/service: quoteApply the configuration to the cluster by typing the command
kubectl apply -f quote-backend.yaml
Test the configuration by typing
curl -Lk https://<hostname>/backend/
orcurl -Lk https://<IP address>/backend/
You should see something similar to the following:
(⎈ |rdl-1:default)$ curl -Lk https://aes.ri.k36.net/backend/{"server": "idle-cranberry-8tbb6iks","quote": "Non-locality is the driver of truth. By summoning, we vibrate.","time": "2019-12-11T20:10:16.525471212Z"}
A Single Source of Configuration
In the Ambassador Edge Stack, Kubernetes serves as the single source of configuration. Changes made on the command line (via kubectl
) are reflected in the Edge Policy Console, and vice versa.
To see this in action, navigate to the Mappings tab. You'll see an entry for the
quote-backend
Mapping that was just created on the command line.Type
kubectl get hosts
to see theHost
resource that was created:
(⎈ |rdl-1:default)$ kubectl get hostsNAME HOSTNAME STATE PHASE COMPLETED PHASE PENDING AGEblackbird-123.edgestack.me blackbird-123.edgestack.me Ready 158m
Developer Onboarding
The Quote service we just deployed publishes its API as a Swagger document. This API is automatically detected by the Ambassador Edge Stack and published.
In the Edge Policy Console, navigate to the APIs tab. You'll see the documentation there for internal use.
Navigate to
https://<hostname>/docs/
orhttps://<IP address>/docs/
to see the externally visible Developer Portal (make sure you include the trailing/
). This is a fully customizable portal that you can share with third parties who need information about your APIs.
What’s Next?
The Ambassador Edge Stack has a comprehensive range of features to support the requirements of any edge microservice.
To learn more about how the Ambassador Edge Stack works, along with use cases, best practices, and more, check out the Welcome page or read the Ambassador Story.
For a custom configuration, you can install the Ambassador Edge Stack manually.
Questions?
We’re here to help. If you have questions, join our Slack or contact us.