-
Notifications
You must be signed in to change notification settings - Fork 1
/
server.template.yaml
2009 lines (1999 loc) · 83.1 KB
/
server.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
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
AWSTemplateFormatVersion: 2010-09-09
Description: This template creates a cluster to provide high availability. (qs-1r2g4122s)
Parameters:
VPCID:
Type: 'AWS::EC2::VPC::Id'
VPCCIDR:
Description: CIDR block for the VPC
Type: String
PrivateSubnetIDs:
Description: List Private Subnet IDs where cluster VMs are launched
Type: CommaDelimitedList
PublicSubnetIDs:
Description: List Public Subnet IDs where Bastion hosts are launched
Type: CommaDelimitedList
DeploymentTargetGroupArn:
Description: ARN for Elastic load balancer target group
Type: 'String'
KubeTargetGroupArn:
Description: ARN for the Kube API deployment target group
Type: 'String'
Rke2RegistrationTargetGroupArn:
Description: ARN for the Rke 2 registration address deployment target group
Type: 'String'
KeyPairName:
Description: EC2 Instance Key pair name
Type: String
Default: ""
AmiId:
Description: AMI id for the cluster EC2 instances
Type: String
Default: ''
GpuAmiId:
Description: |
Enter the AMI Id to be used for the creation of the EC2 instances of the cluster.
Leave empty to determine automatically the AMI to use.
Type: String
Default: ''
InstanceType:
Description: Node Instance type
Type: String
TmInstanceType:
Description: Task Mining node Instance type
Type: String
ASRobotsInstanceType:
Description: Automation Suite Robots nodes Instance type
Type: String
GpuInstanceType:
Description: Gpu node Instance type
Type: String
ServerDiskSize:
Description: Server instances disk size
Type: Number
MultiNode:
Description: Create a highly available deployment or a single node.
Type: String
Default: 'Multi Node'
AllowedValues:
- "Single Node"
- "Multi Node"
PerformInstallation:
Description: Perform the Service Fabric installation
Type: String
Default: 'true'
AllowedValues:
- 'true'
- 'false'
TaskMining:
Description: Choose false to disable Task Mining installation.
Type: String
Default: 'true'
AllowedValues:
- 'true'
- 'false'
ASRobots:
Description: Chose false to disable Automation Suite Robots installation.
Type: String
Default: 'true'
AllowedValues:
- 'true'
- 'false'
UseExternalOrchestrator:
Description: >-
Choose true to connect AiCenter to an external Orchestrator
Type: String
Default: 'false'
AllowedValues:
- 'true'
- 'false'
OrchestratorCertificate:
Description: >-
Base64 encoded Orchestrator certificate
Type: String
Default: ''
IdentityCertificate:
Description: >-
Base64 encoded Identity certificate
Type: String
Default: ''
AddGpu:
Description: >-
Choose true to add GPU VMs to the deployment.
Type: String
Default: 'false'
AllowedValues:
- 'true'
- 'false'
DeployBastion:
Description: Deploy a bastion host inside the public subnet
Type: String
Default: "true"
AllowedValues:
- 'true'
- 'false'
ServerInstanceCount:
Description: Initial server instance count
Type: String
AgentInstanceCount:
Description: Initial agent instance count
Type: String
FindAMIFunctionArn:
Description: ARN for Lambda function used to find AMI by name
Type: String
IamRoleArn:
Description: ARN of a pre-deployed IAM Role with sufficient permissions for the deployment. Leave empty to create the role
Type: String
Default: ''
IamRoleName:
Description: Name of a pre-deployed IAM Role with sufficient permissions for the deployment. Leave empty to create the role
Type: String
Default: ''
QSS3BucketName:
Type: String
Description: Name of bucket storing the quickstart files
QSS3BucketRegion:
Type: String
Description: Name of region where the bucket storing the quickstart files is located
QSS3KeyPrefix:
Type: String
Description: Quickstart bucket prefix
InputJsonSecretArn:
Description: ARN of Secret where the input json file is located
Type: String
KubeconfigSecretArn:
Description: ARN of Secret where the kubeconfig file is stored
Type: String
InstallerDownloadUrlParameterName:
Description: Name of the SSM parameter that contains the installer download URL
Type: String
BackupFileSystemDns:
Description: DNS name of the backup server
Type: String
Default: ""
SharedStorageBucket:
Description: Name of the shared external object S3 bucket
Type: String
Default: ""
PlatformStorageBucket:
Description: Name of the Platform external object S3 bucket
Type: String
Default: ""
OrchestratorStorageBucket:
Description: Name of the Orchestrator external object S3 bucket
Type: String
Default: ""
AppsStorageBucket:
Description: Name of the Apps external object S3 bucket
Type: String
Default: ""
TestManagerStorageBucket:
Description: Name of the Test Manger external object S3 bucket
Type: String
Default: ""
DataServiceStorageBucket:
Description: Name of the Data Service external object S3 bucket
Type: String
Default: ""
AiCenterStorageBucket:
Description: Name of the AiCenter external object S3 bucket
Type: String
Default: ""
DocumentUnderstandingStorageBucket:
Description: Name of the Document Understanding external object S3 bucket
Type: String
Default: ""
TaskMiningStorageBucket:
Description: Name of the Task Mining external object S3 bucket
Type: String
Default: ""
ProcessMiningStorageBucket:
Description: Name of the Process Mining external object S3 bucket
Type: String
Default: ""
Conditions:
UsingDefaultBucket: !Equals
- !Ref QSS3BucketName
- uipath-s3-quickstart
IsMultiNode: !Equals
- !Ref MultiNode
- "Multi Node"
IsPerformingInstallation: !Equals
- !Ref PerformInstallation
- "true"
InstallingTaskMining: !Equals
- !Ref TaskMining
- "true"
InstallingASRobots: !Equals
- !Ref ASRobots
- "true"
UseExternalOrch: !Equals
- !Ref UseExternalOrchestrator
- "true"
DeployingGpu: !Equals
- !Ref AddGpu
- "true"
FindingAmiAtDeploy: !Equals
- !Ref AmiId
- ''
FindingGpuAmiAtDeploy: !Equals
- !Ref GpuAmiId
- ''
UsingPublicSubnets: !Not [!Equals ['', !Join ["", !Ref PublicSubnetIDs]]]
DeployingBastion: !And
- !Equals [!Ref DeployBastion, 'true']
- !Condition UsingPublicSubnets
HasKeyName: !Not [!Equals [!Ref KeyPairName, ""]]
DeployIam: !Or
- !Equals ["", !Ref IamRoleArn]
- !Equals ["", !Ref IamRoleName]
IsBackupEnabled: !Not [!Equals [!Ref BackupFileSystemDns, ""]]
DeploySharedStorageBucket: !Not [!Equals [!Ref SharedStorageBucket, ""]]
DeployPlatformStorageBucket: !Not [!Equals [!Ref PlatformStorageBucket, ""]]
DeployOrchestratorStorageBucket: !Not [!Equals [!Ref OrchestratorStorageBucket, ""]]
DeployAppsStorageBucket: !Not [!Equals [!Ref AppsStorageBucket, ""]]
DeployTestManagerStorageBucket: !Not [!Equals [!Ref TestManagerStorageBucket, ""]]
DeployDataServiceStorageBucket: !Not [!Equals [!Ref DataServiceStorageBucket, ""]]
DeployAiCenterStorageBucket: !Not [!Equals [!Ref AiCenterStorageBucket, ""]]
DeployDocumentUnderstandingStorageBucket: !Not [!Equals [!Ref DocumentUnderstandingStorageBucket, ""]]
DeployTaskMiningStorageBucket: !Not [!Equals [!Ref TaskMiningStorageBucket, ""]]
DeployProcessMiningStorageBucket: !Not [!Equals [!Ref ProcessMiningStorageBucket, ""]]
IsASRobotsProduction: !And
- !Condition InstallingASRobots
- !Condition IsMultiNode
IsASRobotsEval: !And
- !Condition InstallingASRobots
- !Not [!Condition IsMultiNode]
Resources:
ServiceFabricSecurityGroup:
Type: 'AWS::EC2::SecurityGroup'
Properties:
GroupDescription: Security Group allowing access to UiPath applications
VpcId: !Ref VPCID
SecurityGroupIngress:
- IpProtocol: tcp
FromPort: 443
ToPort: 443
CidrIp: 0.0.0.0/0
- IpProtocol: tcp
FromPort: 22
ToPort: 22
CidrIp: !Ref VPCCIDR
- IpProtocol: tcp
FromPort: 6443
ToPort: 6443
CidrIp: !Ref VPCCIDR
- IpProtocol: tcp
FromPort: 9345
ToPort: 9345
CidrIp: !Ref VPCCIDR
- IpProtocol: tcp
FromPort: 8472
ToPort: 8472
CidrIp: !Ref VPCCIDR
- IpProtocol: tcp
FromPort: 10250
ToPort: 10250
CidrIp: !Ref VPCCIDR
- IpProtocol: tcp
FromPort: 2379
ToPort: 2379
CidrIp: !Ref VPCCIDR
- IpProtocol: tcp
FromPort: 2380
ToPort: 2380
CidrIp: !Ref VPCCIDR
- IpProtocol: tcp
FromPort: 30000
ToPort: 32767
CidrIp: !Ref VPCCIDR
- IpProtocol: udp
FromPort: 8472
ToPort: 8472
CidrIp: !Ref VPCCIDR
InstanceAMIImageName:
Type: AWS::SSM::Parameter
Condition: FindingAmiAtDeploy
Properties:
Name: !Sub "/${AWS::StackName}/InstanceAMIImageName"
Type: String
Value: RHEL-8.6*_HVM-20*
Description: SSM Parameter for storing the Image Name of the AMI used in the ASGs.
InstanceAmiId:
Type: AWS::SSM::Parameter
Properties:
Name: !Sub "/${AWS::StackName}/InstanceAmiId"
Type: String
Value: !If [FindingAmiAtDeploy, !GetAtt InstanceAMI.ImageId, !Ref AmiId]
Description: SSM Parameter for storing the AMI used in the ASGs.
InstanceAMI:
Type: 'Custom::InstanceAMI'
Condition: FindingAmiAtDeploy
Properties:
ServiceToken: !Ref FindAMIFunctionArn
RegionName: !Ref 'AWS::Region'
ImageName: !Sub '{{resolve:ssm:${InstanceAMIImageName}}}'
Architecture: x86_64
VirtualizationType: hvm
Owners: '309956199498'
GpuInstanceAMI:
Type: 'Custom::InstanceAMI'
Condition: FindingGpuAmiAtDeploy
Properties:
ServiceToken: !Ref FindAMIFunctionArn
RegionName: !Ref 'AWS::Region'
ImageName: RHEL-8.6*_HVM-20*
Architecture: x86_64
VirtualizationType: hvm
Owners: '309956199498'
ServiceFabricIamRole:
Type: 'AWS::IAM::Role'
Condition: DeployIam
Properties:
AssumeRolePolicyDocument:
Version: 2012-10-17
Statement:
- Effect: Allow
Principal:
Service:
- ec2.amazonaws.com
Action:
- 'sts:AssumeRole'
Description: IAM Role providing required access for EC2 instance
ManagedPolicyArns:
- !Sub arn:${AWS::Partition}:iam::aws:policy/AmazonSSMManagedInstanceCore
ServiceFabricInstanceProfile:
Type: 'AWS::IAM::InstanceProfile'
Properties:
Roles:
- !If [DeployIam, !Ref ServiceFabricIamRole, !Ref IamRoleName]
Path: '/'
LogsAccessPolicy:
Type: 'AWS::IAM::Policy'
Condition: DeployIam
Properties:
PolicyDocument:
Version: '2012-10-17'
Statement:
- Action:
- logs:PutLogEvents
- logs:DescribeLogStreams
- logs:DescribeLogGroups
- logs:CreateLogStream
- logs:CreateLogGroup
Resource:
- !Sub "arn:${AWS::Partition}:logs:${AWS::Region}:${AWS::AccountId}:log-group:*"
Effect: Allow
- Action:
- cloudwatch:PutMetricData
Resource:
- !Sub "arn:${AWS::Partition}:cloudwatch:${AWS::Region}:${AWS::AccountId}::*"
Effect: Allow
- Action:
- "xray:PutTraceSegments"
Effect: "Allow"
Resource:
- !Sub "arn:${AWS::Partition}:xray:${AWS::Region}:${AWS::AccountId}:*"
PolicyName: CloudwatchLogsAccess
Roles:
- !Ref ServiceFabricIamRole
LifecycleHookActionsPolicy:
Type: 'AWS::IAM::Policy'
Condition: DeployIam
Properties:
PolicyDocument:
Version: '2012-10-17'
Statement:
- Action:
- autoscaling:CompleteLifecycleAction
Resource:
- !Sub "arn:${AWS::Partition}:autoscaling:${AWS::Region}:${AWS::AccountId}:autoScalingGroup:*:autoScalingGroupName/${ServerAutoScalingGroup}"
- !If
- IsMultiNode
- !Sub "arn:${AWS::Partition}:autoscaling:${AWS::Region}:${AWS::AccountId}:autoScalingGroup:*:autoScalingGroupName/${AgentAutoScalingGroup}"
- !Ref AWS::NoValue
- !Sub "arn:${AWS::Partition}:autoscaling:${AWS::Region}:${AWS::AccountId}:autoScalingGroup:*:autoScalingGroupName/${ASRobotsAutoScalingGroup}"
Effect: Allow
PolicyName: LifecycleHookActionsPolicy
Roles:
- !Ref ServiceFabricIamRole
Ec2QueryPolicy:
Type: 'AWS::IAM::Policy'
Condition: DeployIam
Properties:
PolicyDocument:
Version: '2012-10-17'
Statement:
- Action:
- ec2:DescribeVolumes
- ec2:DescribeTags
- ec2:DescribeInstances
Resource:
- !Sub "arn:${AWS::Partition}:ec2:${AWS::Region}:${AWS::AccountId}:*"
Effect: Allow
- Action:
- autoscaling:DescribeAutoScalingInstances
- autoscaling:DescribeAutoScalingGroups
Resource:
- "*"
Effect: Allow
- Action:
- ec2:DescribeImages
- ec2:DescribeInstanceTypes
- ec2:DescribeInstanceTypeOfferings
Resource:
- "*"
Effect: Allow
PolicyName: Ec2QueryPolicy
Roles:
- !Ref ServiceFabricIamRole
QuickstartS3IAMPolicy:
Type: 'AWS::IAM::Policy'
Condition: DeployIam
Properties:
PolicyDocument:
Version: '2012-10-17'
Statement:
- Action:
- s3:GetObject
Resource: !Sub
- arn:${AWS::Partition}:s3:::${S3Bucket}/${QSS3KeyPrefix}*
- S3Bucket: !If [UsingDefaultBucket, !Sub '${QSS3BucketName}-${AWS::Region}', !Ref QSS3BucketName]
Effect: Allow
PolicyName: AwsQuickstartS3Access
Roles:
- !Ref ServiceFabricIamRole
InputJsonSecretPolicy:
Type: 'AWS::IAM::Policy'
Condition: DeployIam
Properties:
PolicyDocument:
Version: '2012-10-17'
Statement:
- Action:
- "secretsmanager:GetSecretValue"
- "secretsmanager:PutSecretValue"
Resource:
- !Ref InputJsonSecretArn
Effect: Allow
PolicyName: InputJsonReadAccess
Roles:
- !Ref ServiceFabricIamRole
KubeconfigSecretPolicy:
Type: 'AWS::IAM::Policy'
Condition: DeployIam
Properties:
PolicyDocument:
Version: '2012-10-17'
Statement:
- Action:
- "secretsmanager:GetSecretValue"
- "secretsmanager:PutSecretValue"
Resource:
- !Ref KubeconfigSecretArn
Effect: Allow
PolicyName: KubeConfigReadWriteAccess
Roles:
- !Ref ServiceFabricIamRole
InstallerDownloadUrlParameterPolicy:
Type: 'AWS::IAM::Policy'
Condition: DeployIam
Properties:
PolicyDocument:
Version: '2012-10-17'
Statement:
- Action:
- "ssm:GetParameter"
Resource:
- !Sub arn:${AWS::Partition}:ssm:${AWS::Region}:${AWS::AccountId}:${InstallerDownloadUrlParameterName}
Effect: Allow
PolicyName: InstallerDownloadUrlParameterReadAccess
Roles:
- !Ref ServiceFabricIamRole
ExternalStorageAccessPolicy:
Type: 'AWS::IAM::Policy'
Condition: DeployIam
Properties:
PolicyDocument:
Version: '2012-10-17'
Statement:
- Action:
- s3:ListAllMyBuckets
Resource:
- !Sub "arn:${AWS::Partition}:s3:::*"
Effect: Allow
- Action:
- s3:GetBucketAcl
- s3:GetBucketCORS
- s3:GetBucketLocation
- s3:GetBucketNotification
- s3:GetBucketPolicy
- s3:PutBucketPolicy
- s3:DeleteBucketPolicy
- s3:GetBucketVersioning
- s3:ListBucket
- s3:ListBucketMultipartUploads
- s3:PutBucketAcl
- s3:PutBucketCORS
Resource:
- !If [DeploySharedStorageBucket, !Sub "arn:${AWS::Partition}:s3:::${SharedStorageBucket}", !Ref "AWS::NoValue"]
- !If [DeployPlatformStorageBucket, !Sub "arn:${AWS::Partition}:s3:::${PlatformStorageBucket}", !Ref "AWS::NoValue"]
- !If [DeployOrchestratorStorageBucket, !Sub "arn:${AWS::Partition}:s3:::${OrchestratorStorageBucket}", !Ref "AWS::NoValue"]
- !If [DeployAppsStorageBucket, !Sub "arn:${AWS::Partition}:s3:::${AppsStorageBucket}", !Ref "AWS::NoValue"]
- !If [DeployTestManagerStorageBucket, !Sub "arn:${AWS::Partition}:s3:::${TestManagerStorageBucket}", !Ref "AWS::NoValue"]
- !If [DeployDataServiceStorageBucket, !Sub "arn:${AWS::Partition}:s3:::${DataServiceStorageBucket}", !Ref "AWS::NoValue"]
- !If [DeployAiCenterStorageBucket, !Sub "arn:${AWS::Partition}:s3:::${AiCenterStorageBucket}", !Ref "AWS::NoValue"]
- !If [DeployDocumentUnderstandingStorageBucket, !Sub "arn:${AWS::Partition}:s3:::${DocumentUnderstandingStorageBucket}", !Ref "AWS::NoValue"]
- !If [DeployTaskMiningStorageBucket, !Sub "arn:${AWS::Partition}:s3:::${TaskMiningStorageBucket}", !Ref "AWS::NoValue"]
- !If [DeployProcessMiningStorageBucket, !Sub "arn:${AWS::Partition}:s3:::${ProcessMiningStorageBucket}", !Ref "AWS::NoValue"]
Effect: Allow
- Action:
- s3:*Object
- s3:*ObjectAcl
- s3:*ObjectAttributes
- s3:*ObjectVersion
- s3:*ObjectVersionTagging
- s3:AbortMultipartUpload
- s3:ListMultipartUploadParts
Resource:
- !If [DeploySharedStorageBucket, !Sub "arn:${AWS::Partition}:s3:::${SharedStorageBucket}/*", !Ref "AWS::NoValue"]
- !If [DeployPlatformStorageBucket, !Sub "arn:${AWS::Partition}:s3:::${PlatformStorageBucket}/*", !Ref "AWS::NoValue"]
- !If [DeployOrchestratorStorageBucket, !Sub "arn:${AWS::Partition}:s3:::${OrchestratorStorageBucket}/*", !Ref "AWS::NoValue"]
- !If [DeployAppsStorageBucket, !Sub "arn:${AWS::Partition}:s3:::${AppsStorageBucket}/*", !Ref "AWS::NoValue"]
- !If [DeployTestManagerStorageBucket, !Sub "arn:${AWS::Partition}:s3:::${TestManagerStorageBucket}/*", !Ref "AWS::NoValue"]
- !If [DeployDataServiceStorageBucket, !Sub "arn:${AWS::Partition}:s3:::${DataServiceStorageBucket}/*", !Ref "AWS::NoValue"]
- !If [DeployAiCenterStorageBucket, !Sub "arn:${AWS::Partition}:s3:::${AiCenterStorageBucket}/*", !Ref "AWS::NoValue"]
- !If [DeployDocumentUnderstandingStorageBucket, !Sub "arn:${AWS::Partition}:s3:::${DocumentUnderstandingStorageBucket}/*", !Ref "AWS::NoValue"]
- !If [DeployTaskMiningStorageBucket, !Sub "arn:${AWS::Partition}:s3:::${TaskMiningStorageBucket}/*", !Ref "AWS::NoValue"]
- !If [DeployProcessMiningStorageBucket, !Sub "arn:${AWS::Partition}:s3:::${ProcessMiningStorageBucket}/*", !Ref "AWS::NoValue"]
Effect: Allow
PolicyName: ExternalStorageAccess
Roles:
- !Ref ServiceFabricIamRole
ServerLaunchConfiguration:
Type: 'AWS::EC2::LaunchTemplate'
Metadata:
AWS::CloudFormation::Authentication:
S3AccessCreds:
type: S3
roleName: !If [DeployIam, !Ref ServiceFabricIamRole, !Ref IamRoleName]
buckets: !If [UsingDefaultBucket, !Sub '${QSS3BucketName}-${AWS::Region}', !Ref QSS3BucketName]
AWS::CloudFormation::Init:
configSets:
config:
- aws_cli_setup
- cloudwatch_agent_setup
- install_ssm_agent
- download_sf
- disk_setup
- !If
- UseExternalOrch
- external_orch_cert_config
- !Ref "AWS::NoValue"
- install_server
disk_setup:
files:
/root/init-disk.sh:
source: !Sub
- 'https://${S3Bucket}.s3.${S3Region}.${AWS::URLSuffix}/${QSS3KeyPrefix}scripts/init-disk.sh'
- S3Region: !If [UsingDefaultBucket, !Ref 'AWS::Region', !Ref QSS3BucketRegion]
S3Bucket: !If [UsingDefaultBucket, !Sub '${QSS3BucketName}-${AWS::Region}', !Ref QSS3BucketName]
authentication: S3AccessCreds
owner: "root"
group: "root"
mode: "000700"
/root/ebsnvme-id.py:
source: !Sub
- 'https://${S3Bucket}.s3.${S3Region}.${AWS::URLSuffix}/${QSS3KeyPrefix}scripts/ebsnvme-id.py'
- S3Region: !If [UsingDefaultBucket, !Ref 'AWS::Region', !Ref QSS3BucketRegion]
S3Bucket: !If [UsingDefaultBucket, !Sub '${QSS3BucketName}-${AWS::Region}', !Ref QSS3BucketName]
authentication: S3AccessCreds
owner: "root"
group: "root"
mode: "000700"
commands:
01_execute_prereqs:
command: dnf -y install unzip jq tree lvm2 bc
02_execute_init_disk:
command: /root/init-disk.sh --server
aws_cli_setup:
files:
/tmp/awscliv2.zip:
source: "https://awscli.amazonaws.com/awscli-exe-linux-x86_64.zip"
commands:
01_unzip_cli:
command: unzip -o /tmp/awscliv2.zip -d /tmp
02_install_cli:
command: /tmp/aws/install --update
install_ssm_agent:
commands:
01enable_ssm_agent:
command: !Sub 'dnf install -y https://s3.${AWS::Region}.amazonaws.com/amazon-ssm-${AWS::Region}/latest/linux_amd64/amazon-ssm-agent.rpm'
ignoreErrors: "true"
02enable_ssm_agent:
command: systemctl enable amazon-ssm-agent
ignoreErrors: "true"
03start_ssm_agent:
command: systemctl start amazon-ssm-agent
ignoreErrors: "true"
download_sf:
files:
/root/download-sf-installer.sh:
content: !Sub |
#!/bin/bash -x
wget "$(/usr/local/bin/aws ssm get-parameter --name "${InstallerDownloadUrlParameterName}" | jq -r '.Parameter.Value')" -O /root/sf-installer.zip
owner: "root"
group: "root"
mode: "00700"
/root/upload-kubeconfig.sh:
content: !Sub |
#!/bin/bash -x
cp /etc/rancher/rke2/rke2.yaml /root/kubeconfig.yaml
registration_url="$(jq -r ".fixed_rke_address" <"/root/installer/input.json")"
sed -i "s|127.0.0.1|$registration_url|" /root/kubeconfig.yaml
/usr/local/bin/aws secretsmanager put-secret-value --secret-id "${KubeconfigSecretArn}" --secret-string file:///root/kubeconfig.yaml
owner: "root"
group: "root"
mode: "00700"
commands:
01_download_installer:
command: /root/download-sf-installer.sh
02_unzip_installer:
command: unzip -o /root/sf-installer.zip -d /root/installer
03_set_permissions:
command: chmod -R +r,+w,+x /root/installer/*
04_download_input:
command: !Sub /usr/local/bin/aws secretsmanager get-secret-value --secret-id "${InputJsonSecretArn}" | jq '.SecretString | fromjson' > /root/installer/input.json
install_server:
files:
/root/install-server.sh:
source: !Sub
- 'https://${S3Bucket}.s3.${S3Region}.${AWS::URLSuffix}/${QSS3KeyPrefix}scripts/install-server.sh'
- S3Region: !If [UsingDefaultBucket, !Ref 'AWS::Region', !Ref QSS3BucketRegion]
S3Bucket: !If [UsingDefaultBucket, !Sub '${QSS3BucketName}-${AWS::Region}', !Ref QSS3BucketName]
authentication: S3AccessCreds
owner: "root"
group: "root"
mode: "000700"
/root/installer/backup.json:
content: !Sub |
{
"target": "nfs",
"endpoint": "${BackupFileSystemDns}",
"location": "/",
"prefix": "asbackup",
"schedule": "*/45 * * * *",
"retention": "72h"
}
owner: "root"
group: "root"
mode: "000700"
/root/installer/generate-certs.sh:
source: !Sub
- 'https://${S3Bucket}.s3.${S3Region}.${AWS::URLSuffix}/${QSS3KeyPrefix}scripts/generate-certs.sh'
- S3Region: !If [UsingDefaultBucket, !Ref 'AWS::Region', !Ref QSS3BucketRegion]
S3Bucket: !If [UsingDefaultBucket, !Sub '${QSS3BucketName}-${AWS::Region}', !Ref QSS3BucketName]
authentication: S3AccessCreds
owner: "root"
group: "root"
mode: "000700"
commands:
01_install_prerequisites:
command: /root/installer/validateUiPathASReadiness.sh install-packages --install-type online
02_install_server:
command: !If
- IsPerformingInstallation
- !If
- IsBackupEnabled
- (trap "" SIGPIPE; export HOME="/root"; /root/install-server.sh -b)
- (trap "" SIGPIPE; export HOME="/root"; /root/install-server.sh)
- echo "Done"
03_enable_gpu:
command: !If
- DeployingGpu
- /root/installer/configureUiPathAS.sh gpu enable
- echo "There are no nodes with GPU in cluster"
cloudwatch_agent_setup:
files:
/tmp/amazon-cloudwatch-agent.rpm:
source: "https://s3.amazonaws.com/amazoncloudwatch-agent/redhat/amd64/latest/amazon-cloudwatch-agent.rpm"
/opt/aws/amazon-cloudwatch-agent/config.json:
content: !Sub |
{
"logs": {
"logs_collected": {
"files": {
"collect_list": [
{
"file_path": "/opt/aws/amazon-cloudwatch-agent/logs/amazon-cloudwatch-agent.log",
"log_group_name": "/aws/ec2/${AWS::StackName}/{instance_id}",
"log_stream_name": "amazon-cloudwatch-agent.log"
},
{
"file_path": "/var/log/cfn-init.log",
"log_group_name": "/aws/ec2/${AWS::StackName}/{instance_id}",
"log_stream_name": "cfn-init"
},
{
"file_path": "/var/log/cfn-init-cmd.log",
"log_group_name": "/aws/ec2/${AWS::StackName}/{instance_id}",
"log_stream_name": "cfn-init-cmd"
}
]
}
},
"log_stream_name": "default.log",
"force_flush_interval" : 15
}
}
commands:
01_install_cw_agent:
command: if rpm -ivh --test /tmp/amazon-cloudwatch-agent.rpm; then rpm -U /tmp/amazon-cloudwatch-agent.rpm; else echo "CW agent already installed"; fi
ignoreErrors: "true"
02_start_cw_agent:
command: /opt/aws/amazon-cloudwatch-agent/bin/amazon-cloudwatch-agent-ctl -a fetch-config -m ec2 -s -c file:/opt/aws/amazon-cloudwatch-agent/config.json
ignoreErrors: "true"
external_orch_cert_config:
commands:
01_populate_orch_cert:
command: !Sub 'echo "${OrchestratorCertificate}" | base64 -d > /root/installer/orchestrator.cer'
02_populate_identity_cert:
command: !Sub 'echo "${IdentityCertificate}" | base64 -d > /root/installer/identity.cer'
Properties:
LaunchTemplateData:
MetadataOptions:
HttpPutResponseHopLimit: 3
BlockDeviceMappings:
- DeviceName: /dev/sda1
Ebs:
DeleteOnTermination: false
Encrypted: true
VolumeSize: 128
VolumeType: gp3
- DeviceName: /dev/sdb
Ebs:
DeleteOnTermination: false
Encrypted: true
VolumeSize: !Ref ServerDiskSize
VolumeType: gp3
- DeviceName: /dev/sdc
Ebs:
DeleteOnTermination: false
Encrypted: true
VolumeSize: 16
VolumeType: gp3
- DeviceName: /dev/sdd
Ebs:
DeleteOnTermination: true
Encrypted: true
VolumeSize: 256
VolumeType: gp3
- !If
- IsASRobotsEval
- DeviceName: /dev/sde
Ebs:
DeleteOnTermination: true
Encrypted: true
VolumeSize: 32
VolumeType: gp3
- !Ref "AWS::NoValue"
ImageId: !Sub '{{resolve:ssm:${InstanceAmiId}}}'
IamInstanceProfile:
Arn: !GetAtt ServiceFabricInstanceProfile.Arn
InstanceType: !Ref InstanceType
KeyName: !If [HasKeyName, !Ref KeyPairName, !Ref "AWS::NoValue"]
SecurityGroupIds:
- !GetAtt ServiceFabricSecurityGroup.GroupId
UserData: !Base64
Fn::Sub: |
#!/bin/bash -x
dnf install -y python3
dnf install -y wget unzip jq
mkdir -p /opt/aws/bin
wget -O /tmp/aws-cfn-bootstrap-py3-latest.tar.gz https://s3.amazonaws.com/cloudformation-examples/aws-cfn-bootstrap-py3-latest.tar.gz
python3 -m easy_install --script-dir /opt/aws/bin /tmp/aws-cfn-bootstrap-py3-latest.tar.gz
/opt/aws/bin/cfn-init -v \
--stack ${AWS::StackName} \
--resource ServerLaunchConfiguration \
--configsets config \
--region ${AWS::Region}
init_exit_code=$?
/opt/aws/bin/cfn-signal -e $init_exit_code \
--stack ${AWS::StackName } \
--resource ServerAutoScalingGroup \
--region ${AWS::Region }
if [ $init_exit_code -eq 0 ]; then
lifecycle_action="CONTINUE"
else
lifecycle_action="ABANDON"
fi
metadata_token=$(curl -X PUT "http://169.254.169.254/latest/api/token" -H "X-aws-ec2-metadata-token-ttl-seconds: 300")
instance_id=$(curl -H "X-aws-ec2-metadata-token: $metadata_token" -s http://169.254.169.254/latest/meta-data/instance-id)
asg_name=$(/usr/local/bin/aws autoscaling describe-auto-scaling-instances --instance-ids "$instance_id" --query 'AutoScalingInstances[*].AutoScalingGroupName' --output text)
/usr/local/bin/aws autoscaling complete-lifecycle-action --lifecycle-action-result "$lifecycle_action" \
--lifecycle-hook-name ${AWS::StackName}-ServerInstallFinishedHook \
--auto-scaling-group-name "$asg_name" \
--instance-id "$instance_id"
AgentLaunchConfiguration:
Type: 'AWS::EC2::LaunchTemplate'
Condition: IsMultiNode
Metadata:
AWS::CloudFormation::Authentication:
S3AccessCreds:
type: S3
roleName: !If [DeployIam, !Ref ServiceFabricIamRole, !Ref IamRoleName]
buckets: !If [UsingDefaultBucket, !Sub '${QSS3BucketName}-${AWS::Region}', !Ref QSS3BucketName]
AWS::CloudFormation::Init:
configSets:
config:
- aws_cli_setup
- cloudwatch_agent_setup
- install_ssm_agent
- download_sf
- disk_setup
- !If
- UseExternalOrch
- external_orch_cert_config
- !Ref "AWS::NoValue"
- install_agent
disk_setup:
files:
/root/init-disk.sh:
source: !Sub
- 'https://${S3Bucket}.s3.${S3Region}.${AWS::URLSuffix}/${QSS3KeyPrefix}scripts/init-disk.sh'
- S3Region: !If [UsingDefaultBucket, !Ref 'AWS::Region', !Ref QSS3BucketRegion]
S3Bucket: !If [UsingDefaultBucket, !Sub '${QSS3BucketName}-${AWS::Region}', !Ref QSS3BucketName]
authentication: S3AccessCreds
owner: "root"
group: "root"
mode: "000700"
/root/ebsnvme-id.py:
source: !Sub
- 'https://${S3Bucket}.s3.${S3Region}.${AWS::URLSuffix}/${QSS3KeyPrefix}scripts/ebsnvme-id.py'
- S3Region: !If [UsingDefaultBucket, !Ref 'AWS::Region', !Ref QSS3BucketRegion]
S3Bucket: !If [UsingDefaultBucket, !Sub '${QSS3BucketName}-${AWS::Region}', !Ref QSS3BucketName]
authentication: S3AccessCreds
owner: "root"
group: "root"
mode: "000700"
commands:
01_execute_prereqs:
command: dnf -y install unzip jq tree lvm2 bc
02_execute_init_disk:
command: /root/init-disk.sh
aws_cli_setup:
files:
/tmp/awscliv2.zip:
source: "https://awscli.amazonaws.com/awscli-exe-linux-x86_64.zip"
commands:
01_unzip_cli:
command: unzip -o /tmp/awscliv2.zip -d /tmp
02_install_cli:
command: /tmp/aws/install --update
install_ssm_agent:
commands:
01enable_ssm_agent:
command: !Sub 'dnf install -y https://s3.${AWS::Region}.amazonaws.com/amazon-ssm-${AWS::Region}/latest/linux_amd64/amazon-ssm-agent.rpm'
ignoreErrors: "true"
02enable_ssm_agent:
command: systemctl enable amazon-ssm-agent
ignoreErrors: "true"
03start_ssm_agent:
command: systemctl start amazon-ssm-agent
ignoreErrors: "true"
download_sf:
files:
/root/download-sf-installer.sh:
content: !Sub |
#!/bin/bash -x
wget "$(/usr/local/bin/aws ssm get-parameter --name "${InstallerDownloadUrlParameterName}" | jq -r '.Parameter.Value')" -O /root/sf-installer.zip
owner: "root"
group: "root"
mode: "00700"
/root/download-kubeconfig.sh:
content: !Sub |
#!/bin/bash -x
/usr/local/bin/aws secretsmanager get-secret-value --secret-id "${KubeconfigSecretArn}" | jq -r '.SecretString' > /root/kubeconfig.yaml
owner: "root"
group: "root"
mode: "00700"
commands:
01_download_installer:
command: /root/download-sf-installer.sh
02_unzip_installer:
command: unzip -o /root/sf-installer.zip -d /root/installer
03_set_permissions:
command: chmod -R +r,+w,+x /root/installer/*
04_download_input:
command: !Sub /usr/local/bin/aws secretsmanager get-secret-value --secret-id "${InputJsonSecretArn}" | jq '.SecretString | fromjson' > /root/installer/input.json
install_agent:
files:
/root/install-agent.sh:
source: !Sub
- 'https://${S3Bucket}.s3.${S3Region}.${AWS::URLSuffix}/${QSS3KeyPrefix}scripts/install-agent.sh'
- S3Region: !If [UsingDefaultBucket, !Ref 'AWS::Region', !Ref QSS3BucketRegion]
S3Bucket: !If [UsingDefaultBucket, !Sub '${QSS3BucketName}-${AWS::Region}', !Ref QSS3BucketName]
authentication: S3AccessCreds
owner: "root"
group: "root"
mode: "000700"
commands:
01_install_prerequisites:
command: /root/installer/validateUiPathASReadiness.sh install-packages --install-type online
02_install_agent:
command: !If
- IsPerformingInstallation
- (trap "" SIGPIPE; export HOME="/root"; /root/install-agent.sh --node-role "agent")
- echo "Done"
cloudwatch_agent_setup:
files:
/tmp/amazon-cloudwatch-agent.rpm:
source: "https://s3.amazonaws.com/amazoncloudwatch-agent/redhat/amd64/latest/amazon-cloudwatch-agent.rpm"
/opt/aws/amazon-cloudwatch-agent/config.json:
content: !Sub |
{
"logs": {
"logs_collected": {
"files": {
"collect_list": [
{
"file_path": "/opt/aws/amazon-cloudwatch-agent/logs/amazon-cloudwatch-agent.log",
"log_group_name": "/aws/ec2/${AWS::StackName}/{instance_id}",
"log_stream_name": "amazon-cloudwatch-agent.log"
},
{
"file_path": "/var/log/cfn-init.log",
"log_group_name": "/aws/ec2/${AWS::StackName}/{instance_id}",
"log_stream_name": "cfn-init"
},
{
"file_path": "/var/log/cfn-init-cmd.log",
"log_group_name": "/aws/ec2/${AWS::StackName}/{instance_id}",
"log_stream_name": "cfn-init-cmd"
}
]
}
},
"log_stream_name": "default.log",
"force_flush_interval" : 15
}
}
commands:
01_install_cw_agent:
command: if rpm -ivh --test /tmp/amazon-cloudwatch-agent.rpm; then rpm -U /tmp/amazon-cloudwatch-agent.rpm; else echo "CW agent already installed"; fi
ignoreErrors: "true"
02_start_cw_agent:
command: /opt/aws/amazon-cloudwatch-agent/bin/amazon-cloudwatch-agent-ctl -a fetch-config -m ec2 -s -c file:/opt/aws/amazon-cloudwatch-agent/config.json
ignoreErrors: "true"
external_orch_cert_config:
commands:
01_populate_orch_cert:
command: !Sub 'echo "${OrchestratorCertificate}" | base64 -d > /root/installer/orchestrator.cer'
02_populate_identity_cert:
command: !Sub 'echo "${IdentityCertificate}" | base64 -d > /root/installer/identity.cer'
Properties:
LaunchTemplateData:
MetadataOptions:
HttpPutResponseHopLimit: 3
BlockDeviceMappings:
- DeviceName: /dev/sda1
Ebs:
DeleteOnTermination: true
Encrypted: true
VolumeSize: 128
VolumeType: gp3
- DeviceName: /dev/sdd
Ebs:
DeleteOnTermination: true
Encrypted: true
VolumeSize: 256
VolumeType: gp3
ImageId: !Sub '{{resolve:ssm:${InstanceAmiId}}}'
IamInstanceProfile:
Arn: !GetAtt ServiceFabricInstanceProfile.Arn
InstanceType: !Ref InstanceType
KeyName: !If [HasKeyName, !Ref KeyPairName, !Ref "AWS::NoValue"]
SecurityGroupIds:
- !GetAtt ServiceFabricSecurityGroup.GroupId
UserData: !Base64