-
Notifications
You must be signed in to change notification settings - Fork 29
/
Copy pathdeadline-cloud-cuda-farm-template.yaml
812 lines (734 loc) · 32 KB
/
deadline-cloud-cuda-farm-template.yaml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
AWSTemplateFormatVersion: 2010-09-09
Description: >
An AWS Deadline Cloud farm for running CUDA jobs. The deployment includes a queue for running CUDA jobs,
a second queue for building conda packages, and a Linux fleet with CUDA GPUs. The CUDA fleet
is configured for GPU chips A10G and L4, used by the g5 and g6 instance families respectively.
See the README.md included with the CloudFormation template to learn more.
Parameters:
JobAttachmentsBucketName:
Type: String
Description: An existing S3 bucket to use for job attachments and the default S3 conda channel.
MinLength: 1
# Deadline Cloud farm
FarmName:
Type: String
Description: The name of the farm.
Default: "CUDA Deadline Cloud Farm"
MinLength: 1
FarmDescription:
Type: String
Description: The description of the farm.
Default: "Deadline Cloud farm deployed from the cuda_farm sample CloudFormation template."
# Deadline Cloud queues
ProdQueueName:
Type: String
Description: The name of the queue for running CUDA jobs.
Default: "CUDA Job Queue"
MinLength: 1
ProdQueueDescription:
Type: String
Description: The description of the queue for running CUDA jobs.
Default: "The Deadline Cloud queue for running CUDA jobs."
MinLength: 1
ProdCondaChannels:
Type: String
Description: >
The conda channels to use by default in the CUDA job queue alongside the default
S3 channel on the job attachments bucket. Separate each channel with a space.
By default, includes the deadline-cloud channel for DCCs provided by Deadline
Cloud and the conda-forge channel for CUDA compilers and applications
from the https://conda-forge.org/ community.
Default: "deadline-cloud conda-forge"
PackageBuildQueueName:
Type: String
Description: >
The name of the queue for building conda packages.
Default: "Package Build Queue"
MinLength: 1
PackageBuildQueueDescription:
Type: String
Description: The description of the package build queue.
Default: "The Deadline Cloud queue for building conda packages."
# Fleet names
CUDALinuxFleetName:
Type: String
Description: The name of your Linux fleet with CUDA GPUs.
Default: "CUDA Linux Fleet"
MinLength: 1
# CUDA Linux fleet properties
CUDALinuxInstanceMarketType:
Type: String
Description: Whether to use on-demand or spot instances in the CUDA Linux fleet.
Default: on-demand
AllowedValues:
- on-demand
- spot
MaxCUDALinuxWorkerCount:
Type: Number
Description: How many worker hosts in the CUDA Linux Fleet.
Default: 1
MinCUDALinuxVcpu:
Type: Number
Description: Minimum number of vCPUs for instances in the CUDA Linux fleet.
Default: 4
MaxCUDALinuxVcpu:
Type: Number
Description: Maximum number of vCPUs for instances in the CUDA Linux fleet.
Default: 16
MinCUDALinuxRamMiB:
Type: Number
Description: Minimum MiB RAM for instances in the CUDA Linux fleet.
Default: 32768
# EBS volume properties
RootEbsVolumeSizeGiB:
Type: Number
Description: EBS volume size GiB to use in the fleets.
Default: 300
RootEbsVolumeIops:
Type: Number
Description: EBS volume IOPS to use in the fleets.
Default: 3000
RootEbsVolumeThroughputMiB:
Type: Number
Description: EBS volume throughput MiB to use in the fleets.
Default: 125
Metadata:
AWS::CloudFormation::Interface:
ParameterGroups:
- Label:
default: "Required Farm Parameters"
Parameters:
- JobAttachmentsBucketName
- Label:
default: "Farm and Queue Names"
Parameters:
- FarmName
- ProdQueueName
- PackageBuildQueueName
- Label:
default: "Fleet Names"
Parameters:
- CUDALinuxFleetName
- Label:
default: "Farm and Queue Configuration"
Parameters:
- ProdCondaChannels
- FarmDescription
- ProdQueueDescription
- PackageBuildQueueDescription
- Label:
default: "CUDA-Linux Fleet Configuration"
Parameters:
- MaxCUDALinuxWorkerCount
- CUDALinuxInstanceMarketType
- MinCUDALinuxVcpu
- MaxCUDALinuxVcpu
- MinCUDALinuxRamMiB
- Label:
default: "EBS Volume Configuration"
Parameters:
- RootEbsVolumeSizeGiB
- RootEbsVolumeIops
- RootEbsVolumeThroughputMiB
ParameterLabels:
JobAttachmentsBucketName:
default: "Existing S3 Bucket For Job Attachments"
FarmName:
default: "Farm Name"
FarmDescription:
default: "Farm Description"
ProdQueueName:
default: "CUDA Queue Name"
ProdQueueDescription:
default: "CUDA Queue Description"
ProdCondaChannels:
default: "CUDA Queue Conda Channels"
PackageBuildQueueName:
default: "Package Build Queue Name"
PackageBuildQueueDescription:
default: "Package Build Queue Description"
CUDALinuxFleetName:
default: "CUDA-Linux Fleet Name"
CUDALinuxInstanceMarketType:
default: "CUDA-Linux Instance Purchase Type"
MaxCUDALinuxWorkerCount:
default: "Maximum CUDA-Linux Workers"
MinCUDALinuxVcpu:
default: "Minimum CUDA-Linux vCPUs"
MaxCUDALinuxVcpu:
default: "Maximum CUDA-Linux vCPUs"
MinCUDALinuxRamMiB:
default: "Minimum CUDA-Linux RAM (MiB)"
RootEbsVolumeSizeGiB:
default: "Root Volume Size (GiB)"
RootEbsVolumeIops:
default: "Root Volume IOPS"
RootEbsVolumeThroughputMiB:
default: "Root Volume Throughput (MiB)"
Resources:
farm:
Type: AWS::Deadline::Farm
Properties:
DisplayName: !Ref FarmName
Description: !Ref FarmDescription
queue:
Type: AWS::Deadline::Queue
Properties:
DisplayName: !Ref ProdQueueName
Description: !Ref ProdQueueDescription
FarmId: !GetAtt farm.FarmId
JobAttachmentSettings:
S3BucketName: !Ref JobAttachmentsBucketName
RootPrefix: DeadlineCloud
RoleArn: !GetAtt queueIAMRole.Arn
condaQueueEnv:
Type: AWS::Deadline::QueueEnvironment
Properties:
FarmId: !GetAtt farm.FarmId
QueueId: !GetAtt queue.QueueId
Priority: 1
# The start and end delimiters are used by the apply-conda-queue-env.py script
# to insert a specified queue environment template. The template provided as a sample is the result
# of running the following:
#
# $ python ../apply-conda-queue-env.py deadline-cloud-cuda-farm-template.yaml \
# ../../../queue_environments/conda_queue_env_improved_caching.yaml \
# 's3://${JobAttachmentsBucketName}/Conda/Default ${ProdCondaChannels}'
Template: !Sub |
### START_QUEUE_ENV
specificationVersion: "environment-2023-09"
parameterDefinitions:
# CondaPackages and CondaChannels are compatible with the other Conda queue environment templates
- name: CondaPackages
type: STRING
description: >
This is a space-separated list of Conda package match specifications to
install for the job. E.g. "blender=4.3" for a job that renders frames in
Blender 4.3.
default: ""
userInterface:
control: LINE_EDIT
label: Conda Packages
- name: CondaChannels
type: STRING
description: >
This is a space-separated list of Conda channels from which to install
packages. Deadline Cloud SMF packages are installed from the
"deadline-cloud" channel that is configured by Deadline Cloud.
Add "conda-forge" to get packages from the https://conda-forge.org/
community, and "defaults" to get packages from Anaconda Inc (make sure
your usage complies with https://legal.anaconda.com/policies).
default: "s3://${JobAttachmentsBucketName}/Conda/Default ${ProdCondaChannels}"
userInterface:
control: LINE_EDIT
label: Conda Channels
- name: NamedCondaEnv
description: |
If empty, the Conda environment is created only for the session. If provided,
a named Conda environment is reused across any jobs/sessions that run on the worker host.
When reusing an environment, the parameter NamedCondaEnvUpdateAfterMinutes controls
how long it will use the environment without checking for package updates.
If the name is "AUTOMATIC", the environment name is determined by taking the hash of the
CondaPackages and CondaChannels parameters, so that jobs providing identical values for
these parameters will share the same named Conda environment. Automatically-named environments
are deleted by the onExit action if they haven't been updated in more than 96 hours.
If you select a name explicitly, take care to use the environment names consistently, because
different jobs can define the same named environment in a different way.
When creating or updating this environment, it prints information about the operations
to the log file "$CONDA_PREFIX/var/log/conda_queue_env.log".
type: STRING
default: "AUTOMATIC"
userInterface:
control: LINE_EDIT
label: Named Conda Environment
- name: NamedCondaEnvAction
description: |
When a NamedCondaEnv is selected, controls how to treat it.
1. ACTIVATE activates the existing named environment, or creates one if it
doesn't exist. If it's been NamedCondaEnvUpdateAfterMinutes since creation
or the last update, it updates the environment.
2. REMOVE_AND_CREATE always removes the existing named environment, and creates
a new one from scratch.
type: STRING
default: "ACTIVATE"
allowedValues: ["ACTIVATE", "REMOVE_AND_CREATE"]
userInterface:
control: DROPDOWN_LIST
label: Named Conda Environment Action
- name: NamedCondaEnvUpdateAfterMinutes
description: |
When NamedCondaEnvAction is ACTIVATE, this controls how long it will use the named
Conda environment before doing another update.
type: INT
default: 600
userInterface:
control: SPIN_BOX
label: Named Conda Environment Update After (Minutes)
- name: RunCondaClean
description: |
If set to True, runs the command 'conda clean --yes --all' before creating the Conda environment.
This removes Conda caches for the package index, package files, and package directories.
type: STRING
default: "False"
allowedValues: ["True", "False"]
userInterface:
control: CHECK_BOX
label: Clean the Conda Cache
environment:
name: Conda
script:
actions:
onEnter:
command: "bash"
args: ["{{Env.File.Enter}}"]
onExit:
command: "bash"
args: ["{{Env.File.Exit}}"]
embeddedFiles:
- name: Enter
filename: conda-queue-env-enter.sh
type: TEXT
data: |
set -euo pipefail
if [ -z '{{Param.CondaPackages}}' ]; then
echo "Skipping Conda env as CondaPackages parameter was empty."
exit 0
fi
# Install an error handler to clean the cache if there is an error creating the virtual environment
function conda_clean_on_error {
if [ ! "$1" = "0" ]; then
echo "Error detected, cleaning the Conda cache."
conda clean --yes --all
fi
}
trap 'conda_clean_on_error $?' EXIT
function remove_named_env {
for ENVS_DIR in $(conda info --json | python -c "import json, sys; v = json.load(sys.stdin); print('\n'.join(v['envs_dirs']))"); do
if [ -d $ENVS_DIR/$1 ]; then
echo "Removing directory $ENVS_DIR/$1 for the environment"
rm -rf $ENVS_DIR/$1
if [ -d $ENVS_DIR/$1 ]; then
echo "ERROR: Could not remove the directory. Possibly a permissions error or a process holding a lock."
exit 1
fi
fi
done
}
NAMED_CONDA_ENV='{{Param.NamedCondaEnv}}'
# If the special name 'AUTOMATIC' is provided, use the hash of the CondaChannels and CondaPackages
# parameters to generate the actual name.
if [ -n "$NAMED_CONDA_ENV" ] && [ "$NAMED_CONDA_ENV" = 'AUTOMATIC' ]; then
echo 'Using an automatic name for the Conda environment, based on the hash of these values:'
echo ' CondaChannels: {{Param.CondaChannels}}'
echo ' CondaPackages: {{Param.CondaPackages}}'
NAMED_CONDA_ENV="hashname_$(echo 'Channels/{{Param.CondaChannels}} -- Packages/{{Param.CondaPackages}}' | sha256sum | cut -d " " -f 1 | head -c 24)"
echo "Automatic name is $NAMED_CONDA_ENV"
fi
# If we're not reusing the Conda env, clean up any prior ones
if [ '{{Param.NamedCondaEnvAction}}' = 'REMOVE_AND_CREATE' ] && [ -n "$NAMED_CONDA_ENV" ]; then
echo "NamedCondaEnvAction parameter is set to REMOVE_AND_CREATE, removing the virtual environment..."
remove_named_env "$NAMED_CONDA_ENV"
fi
# If requested, clean the Conda package cache
if [ '{{Param.RunCondaClean}}' = 'True' ]; then
echo "RunCondaClean parameter is True, cleaning the Conda cache..."
conda clean --yes --all
fi
# Convert the space-separated list of channels into consecutive '-c' channel options
CHANNEL_OPTS="$(echo '{{Param.CondaChannels}}' | sed -r 's/(\s+|^)(\S)/ -c \2/g')"
# Put the conda packages list in a variable, as package specs can have characters like '|' in them
CONDA_PACKAGES='{{Param.CondaPackages}}'
# Initialize/activate the Conda virtual environment
if [ -n "$NAMED_CONDA_ENV" ] && conda env list | grep -q "^$NAMED_CONDA_ENV "; then
echo "Reusing the existing named Conda environment $NAMED_CONDA_ENV."
echo ""
# Capture environment variables set by activation
python '{{Env.File.OpenJDVarsStart}}' .vars
conda run -n "$NAMED_CONDA_ENV" python '{{Env.File.OpenJDVarsCapture}}' .vars
ENV_DIR=$(conda run -n "$NAMED_CONDA_ENV" bash -c 'echo $CONDA_PREFIX')
CUR_TIMESTAMP="$(date +%s)"
TIMESTAMP_FILE="$ENV_DIR/var/log/conda_queue_env_update_timestamp"
UPDATE_AFTER='{{Param.NamedCondaEnvUpdateAfterMinutes}}'
if [ -f "$TIMESTAMP_FILE" ]; then
PREV_UPDATE_TIMESTAMP="$(cat "$TIMESTAMP_FILE")"
MINUTES_SINCE_UPDATE="$(python -c "print(($CUR_TIMESTAMP - $PREV_UPDATE_TIMESTAMP) // 60)")"
else
echo "The file recording the previous timestamp was not found"
MINUTES_SINCE_UPDATE="$UPDATE_AFTER"
fi
echo "Minutes elapsed since last update of this named Conda environment: $MINUTES_SINCE_UPDATE"
if [ $MINUTES_SINCE_UPDATE -ge $UPDATE_AFTER ]; then
echo "Elapsed time greater than or equal to $UPDATE_AFTER minutes, updating the environment packages to the latest"
conda install -n "$NAMED_CONDA_ENV" --yes --quiet \
$CONDA_PACKAGES \
$CHANNEL_OPTS
# Save the channels and packages used in the environment, to help out debugging
LOGFILE="$ENV_DIR/var/log/conda_queue_env.log"
echo "Updated $NAMED_CONDA_ENV env at $(date --iso-8601=minutes)" >> "$LOGFILE"
echo ' CondaChannels: {{Param.CondaChannels}}' >> "$LOGFILE"
echo ' CondaPackages: {{Param.CondaPackages}}' >> "$LOGFILE"
# Save a timestamp of when we updated
echo "$CUR_TIMESTAMP" > "$ENV_DIR/var/log/conda_queue_env_update_timestamp"
else
echo "Elapsed time less than $UPDATE_AFTER minutes, skipping updates"
fi
echo ""
conda list -n "$NAMED_CONDA_ENV"
elif [ -n "$NAMED_CONDA_ENV" ]; then
echo "Named Conda environment $NAMED_CONDA_ENV not found, creating it."
# Remove incomplete environments
remove_named_env "$NAMED_CONDA_ENV"
conda create --yes --quiet \
--name "$NAMED_CONDA_ENV" \
$CONDA_PACKAGES \
$CHANNEL_OPTS
# Capture environment variables set by activation
python '{{Env.File.OpenJDVarsStart}}' .vars
conda run -n "$NAMED_CONDA_ENV" python '{{Env.File.OpenJDVarsCapture}}' .vars
ENV_DIR=$(conda run -n $NAMED_CONDA_ENV bash -c 'echo $CONDA_PREFIX')
# Save the channels and packages used in the environment, to help debugging
LOGFILE="$ENV_DIR/var/log/conda_queue_env.log"
mkdir -p "$(dirname $LOGFILE)"
echo "Created $NAMED_CONDA_ENV env at $(date --iso-8601=minutes)" >> "$LOGFILE"
echo ' CondaChannels: {{Param.CondaChannels}}' >> "$LOGFILE"
echo ' CondaPackages: {{Param.CondaPackages}}' >> "$LOGFILE"
# Save a timestamp of when we updated
date +%s > "$ENV_DIR/var/log/conda_queue_env_update_timestamp"
else
echo "Creating temporary Conda environment in the session directory..."
ENV_DIR="$(mktemp -d '{{Session.WorkingDirectory}}/.env-XXXXX')"
conda create --yes --quiet \
-p "$ENV_DIR" \
$CONDA_PACKAGES \
$CHANNEL_OPTS
# Capture environment variables set by activation
python '{{Env.File.OpenJDVarsStart}}' .vars
conda run -p "$ENV_DIR" python '{{Env.File.OpenJDVarsCapture}}' .vars
fi
conda run -p "$ENV_DIR" conda info
- name: Exit
filename: conda-queue-env-exit.sh
type: TEXT
data: |
set -euo pipefail
# When using this queue environment on long-lived worker hosts, such as on premises, the
# automatically named conda environments can accumulate. This code cleans up these environments
# after they haven't been used for 96 hours, a length of time chosen so that when a farm is idle
# for a long weekend it doesn't clear all these environment caches.
# Deactivate the environment so we can delete it if necessary
set +u
eval "$(conda shell.bash deactivate)"
set -u
ENV_DELETE_AFTER_HOURS=96
echo "Cleaning up any automatically-named conda environments that weren't updated within $ENV_DELETE_AFTER_HOURS hours."
AUTO_CONDA_ENVS="$(conda env list | { grep "^hashname_" || true; } | cut -d " " -f 1)"
REMOVED_ENV=0
CUR_TIMESTAMP="$(date +%s)"
for ENV_NAME in $AUTO_CONDA_ENVS; do
echo "Checking environment $ENV_NAME"
ENV_DIR=$(conda run -n $ENV_NAME bash -c 'echo $CONDA_PREFIX')
LOGFILE="$ENV_DIR/var/log/conda_queue_env.log"
if [ -f "$LOGFILE" ]; then
# Creation and each update outputs 3 lines to the log, so print the last 3
tail -3 "$LOGFILE"
fi
TIMESTAMP_FILE="$ENV_DIR/var/log/conda_queue_env_update_timestamp"
if [ -f "$TIMESTAMP_FILE" ]; then
PREV_UPDATE_TIMESTAMP="$(cat "$TIMESTAMP_FILE")"
else
echo "The file recording the previous timestamp was not found"
PREV_UPDATE_TIMESTAMP=0
fi
HOURS_SINCE_UPDATE="$(python -c print"(($CUR_TIMESTAMP - $PREV_UPDATE_TIMESTAMP) // 3600)")"
echo "Environment was last updated $HOURS_SINCE_UPDATE hours ago."
if [ $HOURS_SINCE_UPDATE -gt $ENV_DELETE_AFTER_HOURS ]; then
echo "Elapsed time $HOURS_SINCE_UPDATE is greater than $ENV_DELETE_AFTER_HOURS hours, removing the environment."
conda env remove --yes -q -n $ENV_NAME
REMOVED_ENV=1
fi
done
if [ "$REMOVED_ENV" = "1" ]; then
echo "Cleaning the conda cache to reclaim disk space."
conda clean --yes --all
fi
- name: OpenJDVarsStart
filename: openjd-vars-start.py
type: TEXT
data: |
import json
import os
import sys
# Exclude the env var "_" as it has special meaning to shells
before = dict(os.environ)
if "_" in before:
del before["_"]
with open(sys.argv[1], "w", encoding="utf8") as f:
json.dump(before, f)
- name: OpenJDVarsCapture
filename: openjd-vars-capture.py
type: TEXT
data: |
import json
import os
import sys
# Get the snapshot from `openjd-vars-start.py`, and the current environment state.
with open(sys.argv[1], "r", encoding="utf8") as f:
before = json.load(f)
after = dict(os.environ)
# Exclude the env var "_" as it has special meaning to shells
if "_" in after:
del after["_"]
# Identify the modified and deleted environment variables
vars_to_put = {k: v for k, v in after.items() if v != before.get(k)}
vars_to_delete = {k for k in before if k not in after}
# Print the env var changes following the Open Job Description specification
for k, v in vars_to_put.items():
kv = json.dumps(f"{k}={v}", ensure_ascii=True)
print(f"openjd_env: {kv}")
for k in vars_to_delete:
print(f"openjd_unset_env: {k}")
### END_QUEUE_ENV
TemplateType: YAML
queueIAMRole:
Type: AWS::IAM::Role
Properties:
RoleName: !Sub
- "ProdQueue-${FarmId}"
- FarmId: !GetAtt farm.FarmId
AssumeRolePolicyDocument:
Version: "2012-10-17"
Statement:
- Effect: Allow
Principal:
Service:
- !Sub 'deadline.${AWS::URLSuffix}'
- !Sub 'credentials.deadline.${AWS::URLSuffix}'
Action: "sts:AssumeRole"
Condition:
StringEquals:
aws:SourceAccount: !Sub '${AWS::AccountId}'
ArnEquals:
aws:SourceArn: !Ref farm
Policies:
- PolicyName: QueuePolicy
PolicyDocument:
Version: '2012-10-17'
Statement:
- Sid: JobAttachmentsReadWrite
Action:
- s3:GetObject
- s3:PutObject
- s3:ListBucket
- s3:GetBucketLocation
Effect: Allow
Resource:
- !Sub "arn:aws:s3:::${JobAttachmentsBucketName}"
- !Sub "arn:aws:s3:::${JobAttachmentsBucketName}/DeadlineCloud/*"
Condition:
StringEquals:
aws:ResourceAccount: !Sub '${AWS::AccountId}'
- Sid: CondaChannelReadOnly
Action:
- s3:GetObject
- s3:ListBucket
Effect: Allow
Resource:
- !Sub "arn:aws:s3:::${JobAttachmentsBucketName}"
- !Sub "arn:aws:s3:::${JobAttachmentsBucketName}/Conda/*"
Condition:
StringEquals:
aws:ResourceAccount: !Sub '${AWS::AccountId}'
- Sid: JobLogsReadOnly
Action:
- logs:GetLogEvents
Effect: Allow
Resource: !Sub
- "arn:aws:logs:${AWS::Region}:${AWS::AccountId}:log-group:/aws/deadline/${FarmId}/*"
- FarmId: !GetAtt farm.FarmId
- Sid: DeadlineServiceManagedFleetSoftwareAccess
Action:
- s3:GetObject
- s3:ListBucket
Effect: Allow
Resource:
- "*"
Condition:
ArnLike:
s3:DataAccessPointArn: "arn:aws:s3:*:*:accesspoint/deadline-software-*"
StringEquals:
s3:AccessPointNetworkOrigin: VPC
queueForPackageBuild:
Type: AWS::Deadline::Queue
Properties:
DisplayName: !Ref PackageBuildQueueName
Description: !Ref PackageBuildQueueDescription
FarmId: !GetAtt farm.FarmId
JobAttachmentSettings:
S3BucketName: !Ref JobAttachmentsBucketName
RootPrefix: DeadlineCloudPkgBld
RoleArn: !GetAtt queueForPackageBuildIAMRole.Arn
queueForPackageBuildIAMRole:
Type: AWS::IAM::Role
Properties:
RoleName: !Sub
- "PackageBuildQueue-${FarmId}"
- FarmId: !GetAtt farm.FarmId
AssumeRolePolicyDocument:
Version: "2012-10-17"
Statement:
- Effect: Allow
Principal:
Service:
- !Sub 'deadline.${AWS::URLSuffix}'
- !Sub 'credentials.deadline.${AWS::URLSuffix}'
Action: "sts:AssumeRole"
Condition:
StringEquals:
aws:SourceAccount: !Sub '${AWS::AccountId}'
ArnEquals:
aws:SourceArn: !Ref farm
Policies:
- PolicyName: QueuePolicy
PolicyDocument:
Version: '2012-10-17'
Statement:
- Sid: JobAttachmentsReadWrite
Action:
- s3:GetObject
- s3:PutObject
- s3:ListBucket
- s3:GetBucketLocation
Effect: Allow
Resource:
- !Sub "arn:aws:s3:::${JobAttachmentsBucketName}"
- !Sub "arn:aws:s3:::${JobAttachmentsBucketName}/DeadlineCloudPkgBld/*"
Condition:
StringEquals:
aws:ResourceAccount: !Sub '${AWS::AccountId}'
- Sid: CondaChannelReadWrite
Action:
- s3:GetObject
- s3:ListBucket
# These two are in addition to the ones in the non-package building role
- s3:PutObject
- s3:DeleteObject
Effect: Allow
Resource:
- !Sub "arn:aws:s3:::${JobAttachmentsBucketName}"
- !Sub "arn:aws:s3:::${JobAttachmentsBucketName}/Conda/*"
Condition:
StringEquals:
aws:ResourceAccount: !Sub '${AWS::AccountId}'
- Sid: JobLogsReadOnly
Action:
- logs:GetLogEvents
Effect: Allow
Resource: !Sub
- "arn:aws:logs:${AWS::Region}:${AWS::AccountId}:log-group:/aws/deadline/${FarmId}/*"
- FarmId: !GetAtt farm.FarmId
- Sid: DeadlineServiceManagedFleetSoftwareAccess
Action:
- s3:GetObject
- s3:ListBucket
Effect: Allow
Resource:
- "*"
Condition:
ArnLike:
s3:DataAccessPointArn: "arn:aws:s3:*:*:accesspoint/deadline-software-*"
StringEquals:
s3:AccessPointNetworkOrigin: VPC
deadlineFleetCUDALinux:
Type: AWS::Deadline::Fleet
Properties:
DisplayName: !Ref CUDALinuxFleetName
FarmId: !GetAtt farm.FarmId
RoleArn: !GetAtt fleetRole.Arn
MinWorkerCount: 0
MaxWorkerCount: !Ref MaxCUDALinuxWorkerCount
Configuration:
ServiceManagedEc2:
InstanceCapabilities:
AcceleratorCapabilities:
Count:
Min: 1
Max: 1
Selections:
- Name: a10g
Runtime: latest
- Name: l4
Runtime: latest
VCpuCount:
Min: !Ref MinCUDALinuxVcpu
Max: !Ref MaxCUDALinuxVcpu
MemoryMiB:
Min: !Ref MinCUDALinuxRamMiB
RootEbsVolume:
SizeGiB: !Ref RootEbsVolumeSizeGiB
Iops: !Ref RootEbsVolumeIops
ThroughputMiB: !Ref RootEbsVolumeThroughputMiB
OsFamily: LINUX
CpuArchitectureType: x86_64
InstanceMarketOptions:
Type: !Ref CUDALinuxInstanceMarketType
deadlineProdQueueCUDALinuxFleetAssociation:
Type: AWS::Deadline::QueueFleetAssociation
Properties:
FarmId: !GetAtt farm.FarmId
QueueId: !GetAtt queue.QueueId
FleetId: !GetAtt deadlineFleetCUDALinux.FleetId
deadlinePackageBuildQueueCUDALinuxFleetAssociation:
Type: AWS::Deadline::QueueFleetAssociation
Properties:
FarmId: !GetAtt farm.FarmId
QueueId: !GetAtt queueForPackageBuild.QueueId
FleetId: !GetAtt deadlineFleetCUDALinux.FleetId
fleetRole:
Type: AWS::IAM::Role
Properties:
RoleName: !Sub
- "Fleet-${FarmId}"
- FarmId: !GetAtt farm.FarmId
AssumeRolePolicyDocument:
Version: "2012-10-17"
Statement:
- Effect: Allow
Principal:
Service:
- !Sub "credentials.deadline.${AWS::URLSuffix}"
Action:
- sts:AssumeRole
Condition:
StringEquals:
aws:SourceAccount: !Sub '${AWS::AccountId}'
ArnEquals:
aws:SourceArn: !Ref farm
Policies:
- PolicyName: FleetWorkerLogs
PolicyDocument:
Version: '2012-10-17'
Statement:
- Effect: Allow
Action:
# Allow Deadline Cloud to create new log streams for the farm
- logs:CreateLogStream
Resource:
- !Sub
- arn:${AWS::Partition}:logs:${AWS::Region}:${AWS::AccountId}:*:/aws/deadline/${FarmId}/*
- FarmId: !GetAtt farm.FarmId
Condition:
ForAnyValue:StringEquals:
aws:CalledVia:
- !Sub "deadline.${AWS::URLSuffix}"
- Effect: Allow
Action:
# Allow the Worker to put events to its Worker log and to Session logs for running Jobs
- logs:PutLogEvents
# Allow Deadline Cloud Monitor users to read Worker logs
- logs:GetLogEvents
Resource:
- !Sub
- arn:${AWS::Partition}:logs:${AWS::Region}:${AWS::AccountId}:*:/aws/deadline/${FarmId}/*
- FarmId: !GetAtt farm.FarmId
ManagedPolicyArns:
- !Sub 'arn:${AWS::Partition}:iam::aws:policy/AWSDeadlineCloud-FleetWorker'