DocsAmbassador Cloud
Using Deployment Previews with Ambassador Cloud
Using Deployment Previews with Ambassador Cloud
Deployment previews are a clean, simple mechanism to easily provide access to a development version of a service while it is still a pull request, before merging the new code. This reduces development time by making it significantly faster to iterate on new features or bugfixes. This means you no longer need to manually coordinate deployments to staging or test environments, deployment previews can handle as many development streams as you need for you.
Prerequisites
- An application that can be deployed to K8s that is set up for GitOps. This includes a repo that has all of the application code, as well as a declarative deployment configuration for that application. The it could be in two repos or in the same one. The following example uses a two repo approach.
- A cluster connected to Ambassador Cloud with Edge Stack version of 2.2.x or later installed on it.
- Ambassador Cloud GitOps integration enabled on the repo containing the application code.
- Argo CD set up to sync the deployment configuration into the cluster,
- A container registry that has read/write permissions. The following example uses Docker.
Setup
To use deployment previews, you need to configure CI, Ambassador Cloud, and ArgoCD to work together, using a GitOps workflow:
Your cluster must be connected to Ambassador Cloud, and the GitHub repository for your service (the code repository) must have the Ambassador Cloud GitOps integration enabled. If you haven't done this yet, follow the GitOps with Ambassador Cloud quick start.
ArgoCD must be configured to sync manifests from a GitHub or GitLab repository into your cluster. This is the infrastructure repository; it may or may not be the same code respiratory. Confirm how your repository is configured before proceeding.
If you haven't configured how manifests are synced from your GitLab or GitHub repository yet, follow the ArgoCD quick start to complete this process.
Deployment previews rely on a Telepresence pod daemon container for routing. Your cluster must have RBAC configured for the deployment preview daemon container:
Your cluster needs a Secret containing your Ambassador Cloud API Key:
This example assumes your are deploying your previews in the
deploy-previews
namespace. There must be adeployment-preview-apikey
Secret in any namespace you use with deployment previews.Replace
$AMBASSADOR_CLOUD_APIKEY
with your Ambassador Cloud API key. You can generate an API key from the Ambassador Cloud Settings
For every pull request you want to preview, CI in the code repository must:
- Build a Docker image for your service.
- Push the Docker image to a Docker registry that is accessible by your cluster.
- Commit a new manifest to the infrastructure repository that deploys the newly-built image to your cluster.
The exact way CI does these three things depends on your service. See the Manifest Requirements section below for more details.
When a pull request in the code repository is closed or merged, CI needs to delete the manifests it created.
Usage
After setup is complete, open a pull request in your code repository:
After CI publishes the image and manifests for your new deployment, Argo syncs the new deployment preview manifests into your cluster. (This may take a few minutes, depending on how Argo is configured.)
Once argo has synced the new manifests into your cluster, the deployment preview pod requests a new preview URL from Ambassador Cloud. Once the URL has been created, it is posted to your PR as a comment.
Simply open the preview URL in your browser and (if needed) authenticate to Ambassador Cloud to interact with your new deployment. You can share this URL with other members of your Ambassador Cloud organization to get their feedback, too.
Once your PR is merged or closed, CI removes the deployment preview manifests. If Argo is properly configured to automatically prune resources, it removes the deployment preview from your cluster. (Again, this may take a few minutes, depending on how Argo is configured.)
Manifest Requirements
Since CI is responsible for creating the manifests used to deploy your service, it has enormous flexibility in how exactly the manifest is created. However, the manifest must include the deployment preview daemon container in your target application Deployment resource and its ServiceAccount:
In the manifest, several things must be customized:
$NAME
,$NAMESPACE
, and$PORT
need to match the name, namespace, and port of your live application (non-preview) Deployment.$INGRESS_HOST
needs to be the DNS name or IP address of the Edge Stack running in your cluster. In standard installations, it should beedge-stack.ambassador
.$PUBLIC_HOSTNAME
needs to be the DNS name where you would access your live application.- If your Edge Stack is not doing TLS on port 443, edit the
--ingress-tls
and--ingress-port
arguments. - If your Telepresence traffic-manager is not running in the
ambassador
namespace, edit theMANAGER_NAMESPACE
environment variable. - If you are running an different version of Telepresence, you may wish to change the version number from 2.6.9-BOGUS-WE-WILL-FILL-IN-THIS-VERSION-ONCE-WE-HAVE-IT to the version that you use. Deploy previews require Telepresence 2.6.9-BOGUS-WE-WILL-FILL-IN-THIS-VERSION-ONCE-WE-HAVE-IT or later.
For an example of CI editing the manifest, see the deployment previews demo GitHub repo.
ON THIS PAGE