Search the Docs

Developer Portal

Rendering API Documentation

The Dev Portal uses the Mapping resource to automatically discover services known by the Ambassador Edge Stack.

For each Mapping, the Dev Portal will attempt to fetch an OpenAPI V3 document when a docs attribute is specified.

docs attribute in Mappings

This documentation endpoint is defined by the optional docs attribute in the Mapping.

docs:
path: "string" # optional; default is ""
url: "string" # optional; default is ""
ignored: bool # optional; default is false

where:

  • path: path for the OpenAPI V3 document. The Ambassador Edge Stack will append the value of docs.path to the prefix in the Mapping so it will be able to use Envoy's routing capabilities for fetching the documentation from the upstream service . You will need to update your microservice to return a Swagger or OAPI document at this URL.
  • url: absolute URL to an OpenAPI V3 document.
  • ignored: ignore this Mapping for documenting services. Note that the service will appear in the Dev Portal anyway if another, non-ignored Mapping exists for the same service.

Note:

Previous versions of the Dev Portal tried to obtain documentation automatically from /.ambassador-internal/openapi-docs by default, while the current version will not try to obtain documentation unless a docs attribute is specified. Users should set docs.path to /.ambassador-internal/openapi-docs in their Mappings in order to keep the previous behavior.

The docs field of Mappings was not introduced until Ambassador Edge Stack version 1.9 because Ambassador was automatically searching for docs on /.ambassador-internal/openapi-docs Make sure to update your CRDs with the following command if you are encountering problems after upgrading from an earlier version of Ambassador.

`kubectl apply -f https://getambassador.io/yaml/aes-crds.yaml`

If you are on an earlier version of Ambassador, either upgrade to a newer version, or make your documentation available on /.ambassador-internal/openapi-docs

Example:

With the Mappings below, the Dev Portal would fetch OpenAPI documentation from service-a:5000 at the path /srv/openapi/ and from httpbin from an external URL. service-b would have no documentation.

---
apiVersion: getambassador.io/v2
kind: Mapping
metadata:
name: service-a
spec:
prefix: /service-a/
rewrite: /srv/
service: service-a:5000
docs:
path: /openapi/ ## docs will be obtained from `/srv/openapi/`
---
apiVersion: getambassador.io/v2
kind: Mapping
metadata:
name: service-b
spec:
prefix: /service-b/
service: service-b ## no `docs` attribute, so service-b will not be documented
---
apiVersion: getambassador.io/v2
kind: Mapping
metadata:
name: regular-httpbin
spec:
host_rewrite: httpbin.org
prefix: /httpbin/
service: httpbin.org
docs:
url: https://api.swaggerhub.com/apis/helen/httpbin/1.0-oas3/swagger.json

Notes on access to documentation paths:

By default, all the paths where documentation has been found will NOT be publicly exposed by the Ambassador Edge Stack. This is controlled by a special FilterPolicy installed internally.

Limitations on Mappings with a host attribute

The Dev Portal will ignore Mappings that contain hosts that cannot be parsed as a valid hostname, or use a regular expression (when host_regex: true).

Publishing the documentation

All rendered API documentation is published at the /docs/ URL by default. Users can achieve a higher level of customization by creating a DevPortal resource. DevPortal resources allow the customization of:

  • what documentation is published
  • how it looks

Users can create a DevPortal resource for specifying the default configuration for the Dev Portal, filtering Mappings and namespaces and specifying the content.

Note: when several DevPortal resources exist, the Dev Portal will pick a random one and ignore the rest. A specific DevPortal can be used as the default configuration by setting the default attribute to true. Future versions will use other DevPortals for configuring alternative views of the Dev Portal.

DevPortal resources have the following syntax:

apiVersion: getambassador.io/v2
kind: DevPortal
metadata:
name: "string"
namespace: "string"
spec:
default: bool ## optional; default false
docs: ## optional; default is []
- service: "string" ## required
url: "string" ## required
content: ## optional
url: "string" ## optional; see below
branch: "string" ## optional; see below
dir: "string" ## optional; see below
selector: ## optional
matchNamespaces: ## optional; default is []
- "string"
matchLabels: ## optional; default is {}
"string": "string"

where:

  • default: true when this is the default Dev Portal configuration.
  • content: see section below.
  • selector: rules for filtering Mappings:
    • matchNamespaces: list of namespaces, used for filtering the Mappings that will be shown in the DevPortal. When multiple namespaces are provided, the DevPortal will consider Mappings in any of those namespaces.
    • matchLabels: dictionary of labels, filtering the Mappings that will be shown in the DevPortal. When multiple labels are provided, the DevPortal will only consider the Mappings that match all the labels.
  • docs: static list of service/documentation pairs that will be shown in the Dev Portal. Only the documentation from this list will be shown in the Dev Portal (unless additional docs are included with a selector).
    • service: service name used for listing user-provided documentation.
    • url: a full URL to a OpenAPI document for this service. This document will be served as it is, with no extra processing from the Dev Portal (besides replacing the hostname).

Example:

The scope of the default Dev Portal can be restricted to Mappings with the public-api: true and documented: true labels by creating a DevPortal ambassador resource like this:

---
apiVersion: getambassador.io/v2
kind: DevPortal
metadata:
name: ambassador
spec:
default: true
content:
url: https://github.com/datawire/devportal-content.git
selector:
matchLabels:
public-api: "true" ## labels for matching only some Mappings
documented: "true" ## (note that "true" must be quoted)

Example:

The Dev Portal can show a static list OpenAPI docs. In this example, a eks.aws-demo service is shown with the documentation obtained from a URL. In addition, the Dev Portal will show documentation for all the services discovered in the aws-demo namespace:

---
apiVersion: getambassador.io/v2
kind: DevPortal
metadata:
name: ambassador
spec:
default: true
docs:
- service: eks.aws-demo
url: https://api.swaggerhub.com/apis/kkrlogistics/amazon-elastic_kubernetes_service/2017-11-01/swagger.json
selector:
matchNamespaces:
- aws-demo ## matches all the services in the `aws-demo` namespace
## (note that Mappings must contain a `docs` attribute)

Note:

The free and unlicensed versions of Ambassador Edge Stack only support documentation for five services in the DevPortal. When you start publishing documentation for more services to your DevPortal, keep in mind that you will not see more than 5 OpenAPI documents even if you have more than 5 services properly configured to report their OpenAPI specifications. For more information on extending the number of services in your DevPortal please contact sales via our pricing information page.

Styling the DevPortal

The look and feel of a DevPortal can be fully customized for your particular organization by specifying a different content, customizing not only what is shown but how it is shown, and giving the possibility to add some specific content on your API documentation (e.g., best practices, usage tips, etc.) depending on where it has been published.

The default Dev Portal content is loaded in order from:

  • the ambassador DevPortal resource.
  • the Git repo specified in the optional DEVPORTAL_CONTENT_URL environment variable.
  • the default repository at GitHub.

To use your own styling, clone or copy the repository, create an ambassador DevPortal and update the content attribute to point to the repository. If you wish to use a private GitHub repository, create a Personal Access Token and include it in the content following the example below:

---
apiVersion: getambassador.io/v2
kind: DevPortal
metadata:
name: ambassador
spec:
default: true
content:
url: https://9cb034008ddfs819da268d9z13b7ecd26@github.com/datawire/private-devportal-repo.git
selector:
matchLabels:
public-api: true

The content can be have the following attributes:

content:
url: "string" ## optional; default is the default repo
branch: "string" ## optional; default is "master"
dir: "string" ## optional; default is "/"

where:

  • url: Git URL for the content
  • branch: the Git branch
  • dir: subdirectory in the Git repo

Iterating on Dev Portal styling and content

Check out a local copy of your content repo and from within run the following docker image:

docker run -it --rm --volume $PWD:/content --publish 8877:8877 \
docker.io/datawire/ambassador_pro:local-devportal-0.11.0

and open http://localhost:8877 in your browser. Any changes made locally to devportal content will be reflected immediately on page refresh.

Default Configuration

The Dev Portal supports some default configuration in some environment variables (for backwards compatibility).

Environment variables

The Dev Portal can also obtain some default configuration from environment variables defined in the AES Deployment. This configuration method is considered deprecated and kept only for backwards compatibility: users should configure the default values with the ambassador DevPortal.

SettingDescription
AMBASSADOR_URLExternal URL of Ambassador Edge Stack; include the protocol (e.g., https://)
POLL_EVERY_SECSInterval for polling OpenAPI docs; default 60 seconds
DEVPORTAL_CONTENT_URLDefault URL to the repository hosting the content for the Portal
DEVPORTAL_CONTENT_DIRDefault content subdir (defaults to /)
DEVPORTAL_CONTENT_BRANCHDefault content branch (defaults to master)

Questions?

We’re here to help. If you have questions, join our Slack or contact us.