Skip to content

Latest commit

 

History

History

Folders and files

NameName
Last commit message
Last commit date

parent directory

..
 
 
 
 

Deploying Deadline Cloud fleet health check

Introduction

This CloudFormation template sets up continuous health check monitoring for a single Deadline Cloud customer-managed fleet with autoscaling. It creates a Lambda function, an EventBridge rule, and a CloudWatch alarm that can be configured with an SNS topic.

Prerequisites

Before deploying this CloudFormation template, check that you have the following resources created in your AWS Account.

  1. Deadline Cloud Farm and Customer-Managed Fleet: From the AWS Deadline Cloud management console, navigate to the details page of your fleet you want to apply fleet health check monitoring to. Copy the values for Farm ID, Fleet ID, and Fleet Name.

  2. EC2 Autoscaling Group that autoscales the fleet: From the EC2 Auto Scaling management console, navigate to the details page for the Auto Scaling Group corresponding to your fleet, and copy the value for Auto Scaling Group name.

  3. SNS Topic: From the SNS management console, set up an SNS topic in your AWS account for the health check alarm. Copy the ARN of the SNS topic.

  4. SNS Subscription: From the SNS management console, set up an SNS subscription to connect the SNS topic to your email and your phone via SMS so that you can learn about and investigate issues quickly. See the documentation page for the full list of available alarm actions.

Setup Instructions

Using the CloudFormation Console

  1. Download the deadline-fleet-health-check.yaml CloudFormation template.
  2. From the CloudFormation management console, navigate to Create Stack > With new resources (standard).
  3. Upload the deadline-fleet-health-check.yaml CloudFormation template.
  4. Specify the name of the stack and parameters you copied from the Prerequisites section.
  5. Follow the CloudFormation console steps to complete stack creation.

Using the CLI

  1. In your CLI, set the following environment variables with the values you have copied from the Prerequisites section.

    export FARM_ID=<farm_id>
    export FLEET_ID=<fleet_id>
    export FLEET_NAME=<fleet_name>
    export FLEET_AUTOSCALING_GROUP_NAME=<fleet_autoscaling_group_name>
    export HEALTH_CHECK_SNS_TOPIC_ARN=<sns_topic_arn>
    
  2. Deploy the Deadline Cloud fleet health check template with the parameters you specified in Step 1.

    aws cloudformation deploy --template-file deadline-fleet-health-check.yaml \
    --stack-name "cmf-${FLEET_NAME}-fleetHealthCheckStack" \
    --capabilities CAPABILITY_NAMED_IAM \
    --parameter-overrides FarmId=$FARM_ID \
        FleetId=$FLEET_ID \
        FleetName=$FLEET_NAME \
        FleetAutoScalingGroupName=$FLEET_AUTOSCALING_GROUP_NAME \
        HealthCheckAlarmActionArn=$HEALTH_CHECK_SNS_TOPIC_ARN
    

[Optional] Customize Health Check Configurations

You can customize the following health check configurations by changing the CloudFormation template parameter values.

Parameter Default Description
HealthCheckStartupGraceMinutes 10 How many minutes of grace time to give new instances before they must join the fleet.
HealthCheckRateMinutes 10 How many minutes between each health check of all the fleet workers.
HealthCheckFailureAlarmSeconds 900 How many seconds for each period of evaluating health check failures. Defaults to 1.5x the HealthCheckRate.