Skip to content

AWS CDK and Docker configurations for deploying Brender Studio render farms and Blender images.

License

Notifications You must be signed in to change notification settings

Brender-Studio/brender-studio-cdk

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

33 Commits
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Brender Studio CDK

Description

This repository contains the AWS infrastructure (CDK), Docker image, and logic related to rendering jobs for Brender Studio. It also includes a shell script for compiling and pushing Docker images.

Repository Structure

  • aws_cdk/: Defines the infrastructure for the farms created with Brender Studio.
  • docker_blender/: Contains the Dockerfile and all necessary logic, written in Python. This Docker image is used to run Blender jobs.
  • build_docker_images.sh: Script that receives an array of Blender versions as parameters, builds them, and pushes them to ECR (blender-repo-ecr).

Key Components

  1. AWS CDK Stack: Defined in aws_cdk/, this creates the necessary AWS resources including VPC, Security Groups, EFS, S3 Bucket, and AWS Batch resources.

  2. Docker Image: The Dockerfile in docker_blender/ sets up an environment with Blender and required dependencies.

  3. Build Script: build_docker_images.sh automates the process of building and pushing Docker images for different Blender versions.

Usage

This infrastructure is deployed using AWS CodeBuild, which automates the creation of resources needed for Brender Studio farms.

Deployment Process

The deployment process is initiated from the Brender Studio application. Here's how it works:

  1. Using the Brender Studio app (brender-studio-app repository), a CodeCommit repository is created.
  2. A buildspec.yml file is uploaded to this CodeCommit repository.
  3. This triggers a CodeBuild task that executes the infrastructure deployment.

The buildspec.yml file used for CodeBuild can be found here: buildspec.yml

This buildspec.yml handles:

  • Setting up the build environment
  • Cloning this repository (brender-studio-cdk)
  • Building and pushing Docker images
  • Deploying the CDK stack

Example Deployment Command

While the actual deployment is handled by CodeBuild, here's an example of the kind of command it might use:

cdk deploy --context stackName=BRENDER-STACK-DEMO \
           --parameters ecrRepoName=blender-repo-ecr \
           --context blenderVersions="3.6.0,4.1.1" \
           --context isPrivate="true" \
           --context maxvCpus='{"onDemandCPU": "100", "spotCPU": "256", "onDemandGPU": "100", "spotGPU": "256"}' \
           --context spotBidPercentage='{"spotCPU": "80", "spotGPU": "90"}' \
           --context useG6Instances="true" \
           --region us-east-1

Related Repositories

Brender Studio DevContainer

For local development and testing, we provide a DevContainer environment that mirrors the production setup. This allows developers to work on Blender scripts and rendering workflows locally before deploying to AWS.

Repository: brender-studio-devcontainer

The DevContainer repository includes:

  • A Dockerfile that replicates the production environment
  • Sample Blender scenes for testing
  • Scripts to run different job types locally
  • VS Code configuration for easy setup and use

We recommend using the DevContainer for initial development and testing before deploying changes to this CDK-based production environment.

Brender Studio App

The main application that interacts with this infrastructure:

Repository: brender-studio-app

This application initiates the deployment process and interacts with the rendered infrastructure.

References

This project makes use of several AWS services and other technologies:

For more information on how these services are used in the context of Brender Studio, please refer to the code and comments within this repository.