-
Notifications
You must be signed in to change notification settings - Fork 0
/
schema.yaml
executable file
·1794 lines (1674 loc) · 45.4 KB
/
schema.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
---
title: HPC cluster
description: Oracle Cloud HPC cluster
schemaVersion: 1.1.0
version: "2021040901"
informationalText: Automated HPC cluster deployment
logoUrl: https://cloudmarketplace.oracle.com/marketplace/content?contentId=80357668
source:
type: marketplace
reference: 67628143
locale: "en"
outputs:
controller:
title: "controller Instance Public IP"
type: copyableString
visible: true
variableGroups:
- title: "Cluster configuration"
variables:
- ${targetCompartment}
- ${ssh_key}
- ${use_custom_name}
- ${cluster_name}
- ${ldap}
- title: "Headnode options"
variables:
- ${controller_ad}
- ${controller_shape}
- ${controller_ocpus}
- ${controller_ocpus_denseIO_flex}
- ${controller_custom_memory}
- ${controller_memory}
- ${controller_boot_volume_size}
- ${controller_boot_volume_backup}
- ${controller_object_storage_par}
- title: "Compute node options"
variables:
- ${use_multiple_ads}
- ${ad}
- ${secondary_ad}
- ${third_ad}
- ${cluster_network}
- ${compute_cluster}
- ${compute_cluster_exists}
- ${compute_cluster_id}
- ${compute_cluster_start_index}
- ${cluster_network_shape}
- ${instance_pool_shape}
- ${instance_pool_ocpus}
- ${instance_pool_ocpus_denseIO_flex}
- ${instance_pool_custom_memory}
- ${instance_pool_memory}
- ${node_count}
- ${hyperthreading}
- ${boot_volume_size}
- ${use_compute_agent}
- ${use_marketplace_image}
- ${compute_username}
- ${marketplace_listing}
- ${unsupported}
- ${compute_image_compartment}
- ${image}
- ${image_ocid}
- ${BIOS}
- ${IOMMU}
- ${SMT}
- ${virt_instr}
- ${access_ctrl}
- ${numa_nodes_per_socket}
- ${percentage_of_cores_enabled}
- title: "Additional Login Node"
variables:
- ${login_node}
- ${login_ad}
- ${login_shape}
- ${login_ocpus}
- ${login_ocpus_denseIO_flex}
- ${login_custom_memory}
- ${login_memory}
- ${login_boot_volume_size}
- ${use_marketplace_image_login}
- ${marketplace_listing_login}
- ${unsupported_login}
- ${login_image_compartment}
- ${custom_login_image}
- ${unsupported_login_image}
- ${login_username}
- ${login_block}
- ${login_block_volume_size}
- ${login_block_volume_performance}
- title: Autoscaling
variables:
- ${autoscaling}
- ${autoscaling_monitoring}
- ${latency_check}
- title: "API authentication, needed for autoscaling"
variables:
- ${inst_prin}
- ${api_user_ocid}
- ${api_fingerprint}
- ${api_user_key}
- title: "Monitoring"
variables:
- ${autoscaling_mysql_service}
- ${monitoring_shape_name}
- ${admin_username}
- ${admin_password}
visible:
and:
- ${autoscaling_monitoring}
- ${autoscaling}
- title: "Additional file system"
variables:
- ${add_nfs}
- ${create_fss}
- ${nfs_target_path}
- ${nfs_source_IP}
- ${nfs_source_path}
- ${nfs_options}
- ${fss_compartment}
- ${fss_ad}
- title: "Advanced controller options"
variables:
- ${use_marketplace_image_controller}
- ${marketplace_listing_controller}
- ${unsupported_controller}
- ${controller_image_compartment}
- ${custom_controller_image}
- ${unsupported_controller_image}
- ${controller_username}
- title: "Advanced storage options"
variables:
- ${use_advanced}
- ${home_nfs}
- ${home_fss}
- ${create_home_fss}
- ${home_fss_source_IP}
- ${home_fss_source_path}
- ${use_cluster_nfs}
- ${cluster_nfs_path}
- ${controller_block}
- ${controller_block_volume_size}
- ${controller_block_volume_performance}
- ${use_scratch_nfs}
- ${scratch_nfs_path}
- ${scratch_nfs_type_cluster}
- ${scratch_nfs_type_pool}
- ${cluster_block_volume_size}
- ${cluster_block_volume_performance}
- ${localdisk}
- ${log_vol}
- ${redundancy}
- title: "Network options"
variables:
- ${use_existing_vcn}
- ${vcn_compartment}
- ${vcn_id}
- ${private_deployment}
- ${public_subnet_id}
- ${private_subnet_id}
- ${vcn_subnet}
- ${public_subnet}
- ${private_subnet}
- ${rdma_subnet}
- ${additional_subnet}
- ${dns_entries}
- ${zone_name}
- title: "Software"
variables:
- ${privilege_sudo}
- ${privilege_group_name}
- ${slurm}
- ${slurm_nfs}
- ${slurm_ha}
- ${rack_aware}
- ${queue}
- ${spack}
- ${monitoring}
- ${enroot}
- ${pyxis}
- ${pam}
- ${sacct_limits}
- ${healthchecks}
- title: "Billing"
variables:
- ${billing}
- ${billing_shape_name}
- ${billing_mysql_db_admin_username}
- ${billing_mysql_db_admin_password}
- title: "Hidden"
variables:
- ${region}
- ${tenancy_ocid}
- ${cluster_nfs_mount}
- ${cluster_nfs_export}
- ${scratch_nfs_export}
- ${scratch_nfs_mount}
- ${marketplace_listing_id}
- ${marketplace_listing_id_GPU}
- ${marketplace_listing_id_HPC}
- ${ssh_cidr}
- ${marketplace_source_images}
- ${marketplace_version_id}
- ${controller_boot_volume_backup_period}
- ${controller_boot_volume_backup_retention_seconds}
- ${controller_boot_volume_backup_time_zone}
- ${controller_boot_volume_backup_type}
visible: false
- title: "Debug"
variables:
- ${configure}
variables:
targetCompartment:
title: "target compartment"
type: oci:identity:compartment:id
default: ${compartment_ocid}
required: true
use_multiple_ads:
type: boolean
title: "Multiple ADs"
description: "Use multiple ADs in case of capacity constraints (Autoscaling Only) Autoscaling will try another AD upon failure."
default: false
ad:
type: oci:identity:availabilitydomain:name
visible: complexExpression
dependsOn:
compartmentId: ${targetCompartment}
required: true
description: "Availability Domain"
title: "Availability Domain"
secondary_ad:
type: oci:identity:availabilitydomain:name
visible: ${use_multiple_ads}
dependsOn:
compartmentId: ${targetCompartment}
required: false
description: "Secondary Availability Domain"
title: "Secondary Availability Domain"
third_ad:
type: oci:identity:availabilitydomain:name
visible: ${use_multiple_ads}
dependsOn:
compartmentId: ${targetCompartment}
required: false
description: "Third Availability Domain"
title: "Third Availability Domain"
ssh_key:
type: oci:core:ssh:publickey
title: "Public SSH key"
description: "Public SSH key"
required: true
use_custom_name:
type: boolean
title: "use custom cluster name"
description: "Use custom name for the cluster"
default: false
ldap:
type: boolean
title: "Configure LDAP authentication from controller"
description: "When selected nodes will be configured to use LDAP authentication. User and group management can be performed using cluster commands."
default: true
cluster_name:
title: "Name of the cluster"
description: "Custom cluster name"
default: ""
type: string
visible:
and:
- ${use_custom_name}
required: true
controller_ad:
type: oci:identity:availabilitydomain:name
dependsOn:
compartmentId: ${targetCompartment}
visible: complexExpression
required: true
description: "Availability Domain for controller host"
title: "Availability Domain"
#default: ${ad}
controller_shape:
title: "Controller Shape"
type: oci:core:instanceshape:name
dependsOn:
compartmentId: ${targetCompartment}
required: true
default: VM.Standard.E4.Flex
controller_ocpus:
title: "Cores"
type: integer
description: Number of OCPU's for flex shape
minimum: 1
maximum: 64
default: 4
visible:
and:
- or:
- eq:
- ${controller_shape}
- "VM.Standard.E3.Flex"
- eq:
- ${controller_shape}
- "VM.Standard.E4.Flex"
- eq:
- ${controller_shape}
- "VM.Standard.E5.Flex"
- eq:
- ${controller_shape}
- "VM.Optimized3.Flex"
- eq:
- ${controller_shape}
- "VM.Standard.A1.Flex"
- eq:
- ${controller_shape}
- "VM.Standard3.Flex"
required: true
controller_ocpus_denseIO_flex:
title: "Cores"
type: enum
description: Number of OCPU's for Dense IO flex shape
enum:
- 8
- 16
- 32
default: 8
visible:
and:
- or:
- eq:
- ${controller_shape}
- "VM.DenseIO.E4.Flex"
- eq:
- ${controller_shape}
- "VM.DenseIO.E5.Flex"
required: true
controller_custom_memory:
title: Use custom memory size
type: boolean
default: false
visible:
and:
- or:
- eq:
- ${controller_shape}
- "VM.Standard.E3.Flex"
- eq:
- ${controller_shape}
- "VM.Optimized3.Flex"
- eq:
- ${controller_shape}
- "VM.Standard.E4.Flex"
- eq:
- ${controller_shape}
- "VM.Standard.E5.Flex"
- eq:
- ${controller_shape}
- "VM.Standard.A1.Flex"
- eq:
- ${controller_shape}
- "VM.Standard3.Flex"
controller_memory:
title: Memory in GBS
type: integer
description: Number of memory for flex shape. Minimum 1GB per core.
minimum: 1
maximum: 1024
default: 32
visible:
and:
- and:
- or:
- eq:
- ${controller_shape}
- "VM.Standard.E3.Flex"
- eq:
- ${controller_shape}
- "VM.Optimized3.Flex"
- eq:
- ${controller_shape}
- "VM.Standard.E4.Flex"
- eq:
- ${controller_shape}
- "VM.Standard.E5.Flex"
- eq:
- ${controller_shape}
- "VM.Standard.A1.Flex"
- eq:
- ${controller_shape}
- "VM.Standard3.Flex"
- and:
- ${controller_custom_memory}
required: true
controller_object_storage_par:
title: Create Object Storage PAR
description: "Create a PAR (i.e. Pre-Authenticated Request), so that user could use that PAR to upload monitoring metrics to Object Storage and share the URL with OCI service teams."
type: boolean
default: true
unsupported_controller:
title: "Use unsupported image"
description: "Custom image ID for controller"
type: boolean
default: false
visible:
not:
- ${use_marketplace_image_controller}
use_marketplace_image_controller:
type: boolean
title: "use marketplace image"
description: "Use marketplace image, otherwise provide custom image OCID"
default: true
visible: true
marketplace_listing_controller:
type: enum
title: "Image version"
description: "Marketplace listing to use"
required: true
enum:
- "HPC_OL7"
- "HPC_OL8"
- "GPU_OL8_NV550"
- "GPU_OL7_NV550"
- "GPU_OL8_NV535"
- "GPU_OL7_NV535"
default: "HPC_OL8"
visible: ${use_marketplace_image_controller}
controller_username:
title: "Default username for controller"
description: "Custom image ID for controller"
type: string
default: "opc"
required: true
visible: true
unsupported_controller_image:
title: "Image OCID"
description: "Custom image ID for compute nodes. Please note that only Oracle Linux 7 and Ubuntu 20.04 are supported as controller image at this moment."
type: string
required: true
visible: ${unsupported_controller}
default: "image.ocid"
controller_image_compartment:
title: "controller image compartment"
type: oci:identity:compartment:id
default: ${targetCompartment}
visible:
and:
- not:
- ${unsupported_controller}
- not:
- ${use_marketplace_image_controller}
required: true
custom_controller_image:
title: "controller Image ID"
description: "Custom image ID for controller nodes. Please note that only Oracle Linux 7, 8 and Ubuntu 20.04 are supported as controller image at this moment. "
type: oci:core:image:id
dependsOn:
compartmentId: ${controller_image_compartment}
visible:
and:
- not:
- ${unsupported_controller}
- not:
- ${use_marketplace_image_controller}
required: true
controller_boot_volume_size:
type: integer
required: true
minimum: 50
title: "Size of the boot volume in GB"
default: 100
controller_boot_volume_backup:
type: boolean
title: "Enable boot volume backup"
description: "Schedule: Daily, Type: Incremental, Start Time: 00:00 Regional Time, Retention: 90 days."
default: true
controller_block:
type: boolean
title: Additional block volume for shared space
visible:
and:
- ${use_advanced}
default: false
controller_block_volume_size:
required: true
type: integer
title: "Size of the additional volume in GB"
default: 1000
visible:
and:
- and:
- ${controller_block}
- ${use_advanced}
controller_block_volume_performance:
type: enum
title: "Block volume performance"
required: true
enum:
- "0. Lower performance"
- "10. Balanced performance"
- "20. High Performance"
default: "10. Balanced performance"
visible:
and:
- and:
- ${controller_block}
- ${use_advanced}
home_nfs:
type: boolean
title: "shared NFS /home from controller."
visible:
and:
- ${use_advanced}
default: true
home_fss:
type: boolean
title: "Use FSS for /home."
description: "If not creating a new FSS, it will create a home_fss_source_path/home directory"
visible:
and:
- ${use_advanced}
- ${home_nfs}
default: true
create_home_fss:
type: boolean
title: "Create FSS for /home."
visible:
and:
- ${use_advanced}
- ${home_nfs}
- ${home_fss}
default: true
home_fss_source_IP:
type: string
title: "/home FSS server IP"
default: "0.0.0.0"
required: true
description: "IP address of the home fss server"
visible:
and:
- ${use_advanced}
- ${home_nfs}
- ${home_fss}
- not:
- ${create_home_fss}
home_fss_source_path:
type: string
title: "/home FSS server Path"
default: "/home"
description: "Value of the path on /home FSS server"
visible:
and:
- ${use_advanced}
- ${home_nfs}
- ${home_fss}
required: true
use_cluster_nfs:
type: boolean
title: "shared NFS volume from controller"
visible:
and:
- ${use_advanced}
default: true
cluster_nfs_path:
title: "Cluster share mount point"
description: "Path to NFS share"
default: "/nfs/cluster"
type: string
visible:
and:
- ${use_advanced}
- ${use_cluster_nfs}
reguired: true
cluster_network:
title: Use cluster network
type: boolean
description: Use ROCEv2 cluster network
default: true
compute_cluster:
title: Use compute cluster rather than cluster network
type: boolean
description: Use compute cluster instead of cluster network
default: false
visible: ${cluster_network}
compute_cluster_exists:
title: Use existing Compute Cluster
type: boolean
description: The compute cluster already exists
default: false
visible: ${compute_cluster}
compute_cluster_id:
title: Compute Cluster ID
type: string
description: Specify the compute cluster OCID
default: ""
visible: ${compute_cluster_exists}
compute_cluster_start_index:
title: Start Index
type: integer
description: Specify the start Index of the nodes in the compute cluster
default: 0
visible: ${compute_cluster_exists}
cluster_network_shape:
type: enum
enum:
- "BM.HPC2.36"
- "BM.GPU4.8"
- "BM.GPU.B4.8"
- "BM.GPU.A100-v2.8"
- "BM.GPU.H100.8"
- "BM.Optimized3.36"
- "BM.HPC.E5.144"
default: "BM.HPC2.36"
title: "Shape of the Compute Nodes"
description: "Shape of compute nodes used in permanent/initial cluster"
required: true
visible:
and:
- ${cluster_network}
instance_pool_shape:
title: "Shape of the Compute Nodes"
required: true
default: "VM.Standard.E4.Flex"
type: oci:core:instanceshape:name
dependsOn:
compartmentId: ${targetCompartment}
visible:
not:
- ${cluster_network}
description: "Shape of compute nodes used in permanent/initial cluster"
instance_pool_ocpus:
title: Cores
type: integer
description: Number of OCPU's for flex shape
minimum: 1
maximum: 64
default: 2
visible:
and:
- not:
- ${cluster_network}
- or:
- eq:
- ${instance_pool_shape}
- "VM.Standard.E3.Flex"
- eq:
- ${instance_pool_shape}
- "VM.Optimized3.Flex"
- eq:
- ${instance_pool_shape}
- "VM.Standard.E4.Flex"
- eq:
- ${instance_pool_shape}
- "VM.Standard.E5.Flex"
- eq:
- ${instance_pool_shape}
- "VM.Standard.A1.Flex"
- eq:
- ${instance_pool_shape}
- "VM.Standard3.Flex"
required: true
instance_pool_ocpus_denseIO_flex:
title: Cores
type: enum
description: Number of OCPU's for Dense IO flex shape
enum:
- 8
- 16
- 32
default: 8
visible:
and:
- or:
- eq:
- ${instance_pool_shape}
- "VM.DenseIO.E4.Flex"
- eq:
- ${instance_pool_shape}
- "VM.DenseIO.E5.Flex"
required: true
instance_pool_custom_memory:
title: Use custom memory size
type: boolean
default: false
visible:
and:
- not:
- ${cluster_network}
- or:
- eq:
- ${instance_pool_shape}
- "VM.Standard.E3.Flex"
- eq:
- ${instance_pool_shape}
- "VM.Optimized3.Flex"
- eq:
- ${instance_pool_shape}
- "VM.Standard.E4.Flex"
- eq:
- ${instance_pool_shape}
- "VM.Standard.E5.Flex"
- eq:
- ${instance_pool_shape}
- "VM.Standard.A1.Flex"
- eq:
- ${instance_pool_shape}
- "VM.Standard3.Flex"
instance_pool_memory:
title: Memory in GBS
type: integer
description: Number of memory for flex shape. Minimum 1GB per core.
minimum: 1
maximum: 1024
default: 16
visible:
and:
- and:
- or:
- eq:
- ${instance_pool_shape}
- "VM.Standard.E3.Flex"
- eq:
- ${instance_pool_shape}
- "VM.Optimized3.Flex"
- eq:
- ${instance_pool_shape}
- "VM.Standard.E4.Flex"
- eq:
- ${instance_pool_shape}
- "VM.Standard.E5.Flex"
- eq:
- ${instance_pool_shape}
- "VM.Standard.A1.Flex"
- eq:
- ${instance_pool_shape}
- "VM.Standard3.Flex"
- and:
- ${instance_pool_custom_memory}
- not:
- ${cluster_network}
required: true
node_count:
required: true
type: integer
minimum: 0
title: "Initial cluster size"
default: 2
description: "Number of Compute Instances (Permanent Cluster when autoscaling)"
hyperthreading:
type: boolean
title: "Hyperthreading enabled"
default: true
description: "When unchecked SMT will be disabled"
boot_volume_size:
type: integer
required: true
minimum: 50
title: "Size of the boot volume in GB"
default: 100
description: "Boot volume size in GB of each compute node"
use_marketplace_image:
type: boolean
title: "use marketplace image"
description: "Use marketplace image, otherwise provide custom image OCID"
default: true
marketplace_listing:
type: enum
title: "Image version"
description: "Marketplace listing to use"
required: true
enum:
- "HPC_OL7"
- "HPC_OL8"
- "GPU_OL8_NV550"
- "GPU_OL7_NV550"
- "GPU_OL8_NV535"
- "GPU_OL7_NV535"
default: "GPU_OL8_NV550"
visible: ${use_marketplace_image}
use_compute_agent:
type: boolean
title: "use compute agent"
description: "Select if your image has the OCA agent rather than the oci-cn-auth package. The new marketplace images need the compute agent enabled."
default: true
visible:
not:
- ${use_marketplace_image}
compute_image_compartment:
title: "compute image compartment"
type: oci:identity:compartment:id
default: ${targetCompartment}
visible:
and:
- not:
- ${use_marketplace_image}
- not:
- ${unsupported}
image:
title: "Image"
description: "Custom image ID for compute nodes. Supported OS are OL7, OL8, CentOS7 and Ubuntu 20.04"
type: oci:core:image:id
required: true
dependsOn:
compartmentId: ${compute_image_compartment}
visible:
and:
- not:
- ${use_marketplace_image}
- not:
- ${unsupported}
compute_username:
title: "Default username for compute hosts"
description: "Custom image ID for compute hosts"
type: string
default: "opc"
visible:
and:
- not:
- ${use_marketplace_image}
unsupported:
title: "Use unsupported image"
description: "Custom image ID for compute nodes"
type: boolean
default: false
visible:
and:
- not:
- ${use_marketplace_image}
image_ocid:
title: "Image OCID"
description: "Custom image ID for compute nodes. Supported OS are OL7, OL8, CentOS7 and Ubuntu 20.04"
type: string
required: true
visible:
and:
- not:
- ${use_marketplace_image}
- and:
- ${unsupported}
BIOS:
title: "Modify BIOS options"
description: "WARNING : Do NOT change those if you have not tested the changes on a single instance. Error will be \"Shape does not support the provided platform configuration\" "
type: boolean
default: false
visible: true
IOMMU:
title: "IOMMU enabled"
type: boolean
default: false
visible: ${BIOS}
SMT:
title: "SMT Enabled"
type: boolean
default: true
visible: ${BIOS}
virt_instr:
title: "Virtualization instructions"
description: "Virtualization instructions include Secure Virtual Machine for AMD shapes or VT-x for Intel shapes"
type: boolean
default: false
visible: ${BIOS}
access_ctrl:
title: "Access Control Service"
description: "Access control service lets the platform enforce PCIe device isolation"
type: boolean
default: false
visible: ${BIOS}
numa_nodes_per_socket:
title: "Numa Node per Socket"
description: "NUMA Settings"
type: enum
enum:
- "Default"
- "NPS0"
- "NPS1"
- "NPS2"
- "NPS4"
default: "Default"
visible: ${BIOS}
percentage_of_cores_enabled:
title: "Numa Node per Socket"
description: "NUMA Settings"
type: enum
enum:
- "Default"
- "25"
- "50"
- "75"
- "100"
default: "Default"
visible: ${BIOS}
use_advanced:
type: boolean
title: "Show advanced storage options"
default: false
description: "Including running home on FSS."
visible: true
use_scratch_nfs:
type: boolean
title: "Shared NFS scratch space from NVME or Block volume"
visible:
and:
- ${use_advanced}
default: false
scratch_nfs_type_cluster:
type: enum
title: "Scratch storage configuration"
enum:
- "none"
- "nvme"
- "block"
default: "nvme"
visible:
and:
- ${cluster_network}
- ${use_advanced}
- ${use_scratch_nfs}
required: true
scratch_nfs_type_pool:
type: enum
title: "Scratch storage configuration"
enum:
- "none"
- "block"
default: "none"
required: true
visible:
and:
- not:
- ${cluster_network}
- ${use_scratch_nfs}
- and:
- ${use_advanced}
cluster_block_volume_size:
required: true
type: integer
title: "Size of the additional volume in GB"
default: 1000
visible:
and:
- or:
- and:
- eq:
- ${scratch_nfs_type_cluster}
- "block"
- and:
- ${use_advanced}
- ${cluster_network}