Use AWS Lambda in Armory Enterprise

Learn how to use AWS Lambda in a Spinnaker pipeline.

Before you begin

This guide explores a pipeline that tests the various Lambda stages. To deploy the pipeline in your own Armory Enterprise instance, make sure you complete the following:

AWS Lambda pipeline example

This pipeline is based on the one defined in Enhancing Spinnaker deployment experience of AWS Lambda functions with the Lambda plugin.

Example Lambda Pipeline Definition

Example Lambda Pipeline Definition

Deployment stage

This stage creates a new Lambda function, or updates a Lambda function, and sets various Lambda configurations. If you want a simple update to the code of an existing Lambda function, you should use the Update Code stage instead.

Example of  Lambda Deployment Stage

Example of Lambda Deployment Stage

Update Code stage

This stage updates the code of an existing Lambda function.

Example of  Lambda Update Code Stage

Example of Lambda Update Code Stage

Invoke stage

This stage executes a Lambda function. The results of this stage are stored in the stage output, which you can access via SpEL with something like the following:

#stage('AWS Lambda Update Invoke').outputs.invokeResultsList
Example of  Lambda Revoke Stage

Example of Lambda Revoke Stage

Route stage

This stage routes traffic across various versions of the Lambda function.

Simple strategy

Routes 100% of the traffic to the chosen Target Version of the Lambda function. This example config routes 100% of the traffic to the new Lambda version.

Example of Lambda Route Stage - Simple Strategy

Example of Lambda Route Stage - Simple Strategy

Weighted Deployment strategy

Routes some percentage of the traffic to he chosen Target Version of the Lambda function. This example config routes 40% of the traffic to the new Lambda version.

Example of Lambda Route Stage - Weighted Deployment Strategy

Example of Lambda Route Stage - Weighted Deployment Strategy

Blue/Green strategy

Deploys a new version and includes health check configuration to test whether the newly deployed Lambda function is working as expected before routing 100% of traffic to the new version. In case of a health check mismatch, this stage deletes the new version based on the value of the On Fail field.

Example of Lambda Route Stage - Blue/Green Strategy

Example of Lambda Route Stage - Blue/Green Strategy

Delete stage

This stage deletes versions of your Lambda function.

Newest Function Version

Deletes the most recently deployed function version when this stage starts.

Example of Lambda Delete Stage - Newest Function Version

Example of Lambda Delete Stage - Newest Function Version

Previous Function Version

Deletes the second-most recently deployed function version when this stage starts.

Example of Lambda Delete Stage Previous Function Version configuration

Example of Lambda Delete Stage - Previous Function Version

Older Than N

Deletes all versions except for the number of most recent versions configured in the Prior Versions to Retain field.

Example of Lambda Delete Stage Older Than N configuration

Example of Lambda Delete Stage - Older Than N

Provide Version Number

Deletes the specific version specified in the Version Number field.

Example of Lambda Delete Stage Provide Version Number configuration

Example of Lambda Delete Stage - Provide Version Number

All Function Versions

Completely deletes all versions of the Lambda function and its infrastructure.

Example of Lambda Delete Stage All Function Versions configuration

Example of Lambda Delete Stage - All Function Versions


Last modified January 1, 0001