feat: Adds a worker configuration script to install fonts on Linux SMF#170
Merged
joel-wong-aws merged 4 commits intoaws-deadline:mainlinefrom Feb 23, 2026
Merged
Conversation
Signed-off-by: Justin Blagden <jblagden@users.noreply.github.com>
crowecawcaw
reviewed
Jan 6, 2026
| "Effect": "Allow", | ||
| "Action": [ | ||
| "s3:GetObject", | ||
| "s3:ListBucket" |
Contributor
There was a problem hiding this comment.
Should this be ListObjects?
Contributor
Author
There was a problem hiding this comment.
I don't follow - would that be a smaller scope of permissions?
Contributor
There was a problem hiding this comment.
Looking at the host config script, I don't see a use for ListBuckets but the recursive copy looks like it will need ListObjects. Does this IAM policy have a typo?
|
|
||
| This script installs fonts from an S3 bucket on AWS Deadline Cloud service managed fleet instances, making them available to applications like Nuke. | ||
|
|
||
| Be aware that fonts may render differently from operating system to operating system. |
Contributor
There was a problem hiding this comment.
This is Linux only right? If so, let's note that.
Signed-off-by: Justin Blagden <jblagden@users.noreply.github.com>
leongdl
reviewed
Jan 15, 2026
…ng from S3 fails Signed-off-by: Justin Blagden <jblagden@users.noreply.github.com>
leongdl
approved these changes
Jan 20, 2026
|
|
||
| # Install fontconfig (required for font management) | ||
| echo "Installing fontconfig..." | ||
| yum install -y fontconfig |
Contributor
There was a problem hiding this comment.
Should we use dnf instead of yum? It's installed by default on Amazon Linux 2023 and is the standard package manager there with more features
joel-wong-aws
approved these changes
Feb 23, 2026
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
What was the problem/requirement? (What/Why)
I needed to use fonts that aren't included on the service managed fleet image.
What was the solution? (How)
Download the font(s) from an S3 bucket and install them. This needs administrator powers, so I used a worker configuration script.
What is the impact of this change?
If you need a font on a Linux SMF you'll be able to use it. Assuming the font renders as expected, which isn't guaranteed.
How was this change tested?
Submitted a Nuke job that uses the font 'Arial' in and saw the text in the output image.
NukeTextTest.nk.zip
Was this change documented?
Yes, included a README.md.
By submitting this pull request, I confirm that you can use, modify, copy, and redistribute this contribution, under the terms of your choice.