Skip to content

Commit

Permalink
Merge pull request #763 from heyealex/rm-node-group-warning
Browse files Browse the repository at this point in the history
Remove outdated warning in node_groups variable
  • Loading branch information
tpdownes authored Dec 8, 2022
2 parents 7157ac8 + 32efef8 commit 96db073
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 5 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -194,7 +194,7 @@ limitations under the License.
| <a name="input_node_conf"></a> [node\_conf](#input\_node\_conf) | Deprecated: Use the schedmd-slurm-gcp-v5-node-group module for defining node groups instead. | `map(any)` | `null` | no |
| <a name="input_node_count_dynamic_max"></a> [node\_count\_dynamic\_max](#input\_node\_count\_dynamic\_max) | Deprecated: Use the schedmd-slurm-gcp-v5-node-group module for defining node groups instead. | `number` | `null` | no |
| <a name="input_node_count_static"></a> [node\_count\_static](#input\_node\_count\_static) | Deprecated: Use the schedmd-slurm-gcp-v5-node-group module for defining node groups instead. | `number` | `null` | no |
| <a name="input_node_groups"></a> [node\_groups](#input\_node\_groups) | **Preview: This variable is still in development** A list of node groups<br>associated with this partition.<br>The default node group will be prepended to this list based on other input<br>variables to this module. | <pre>list(object({<br> access_config = list(object({<br> network_tier = string<br> }))<br> node_count_static = number<br> node_count_dynamic_max = number<br> group_name = string<br> node_conf = map(string)<br> additional_disks = list(object({<br> disk_name = string<br> device_name = string<br> disk_size_gb = number<br> disk_type = string<br> disk_labels = map(string)<br> auto_delete = bool<br> boot = bool<br> }))<br> bandwidth_tier = string<br> can_ip_forward = bool<br> disable_smt = bool<br> disk_auto_delete = bool<br> disk_labels = map(string)<br> disk_size_gb = number<br> disk_type = string<br> enable_confidential_vm = bool<br> enable_oslogin = bool<br> enable_shielded_vm = bool<br> enable_spot_vm = bool<br> gpu = object({<br> count = number<br> type = string<br> })<br> instance_template = string<br> labels = map(string)<br> machine_type = string<br> metadata = map(string)<br> min_cpu_platform = string<br> on_host_maintenance = string<br> preemptible = bool<br> service_account = object({<br> email = string<br> scopes = list(string)<br> })<br> shielded_instance_config = object({<br> enable_integrity_monitoring = bool<br> enable_secure_boot = bool<br> enable_vtpm = bool<br> })<br> spot_instance_config = object({<br> termination_action = string<br> })<br> source_image_family = string<br> source_image_project = string<br> source_image = string<br> tags = list(string)<br> }))</pre> | `[]` | no |
| <a name="input_node_groups"></a> [node\_groups](#input\_node\_groups) | A list of node groups associated with this partition. See<br>schedmd-slurm-gcp-v5-node-group for more information on defining a node<br>group in a blueprint. | <pre>list(object({<br> access_config = list(object({<br> network_tier = string<br> }))<br> node_count_static = number<br> node_count_dynamic_max = number<br> group_name = string<br> node_conf = map(string)<br> additional_disks = list(object({<br> disk_name = string<br> device_name = string<br> disk_size_gb = number<br> disk_type = string<br> disk_labels = map(string)<br> auto_delete = bool<br> boot = bool<br> }))<br> bandwidth_tier = string<br> can_ip_forward = bool<br> disable_smt = bool<br> disk_auto_delete = bool<br> disk_labels = map(string)<br> disk_size_gb = number<br> disk_type = string<br> enable_confidential_vm = bool<br> enable_oslogin = bool<br> enable_shielded_vm = bool<br> enable_spot_vm = bool<br> gpu = object({<br> count = number<br> type = string<br> })<br> instance_template = string<br> labels = map(string)<br> machine_type = string<br> metadata = map(string)<br> min_cpu_platform = string<br> on_host_maintenance = string<br> preemptible = bool<br> service_account = object({<br> email = string<br> scopes = list(string)<br> })<br> shielded_instance_config = object({<br> enable_integrity_monitoring = bool<br> enable_secure_boot = bool<br> enable_vtpm = bool<br> })<br> spot_instance_config = object({<br> termination_action = string<br> })<br> source_image_family = string<br> source_image_project = string<br> source_image = string<br> tags = list(string)<br> }))</pre> | `[]` | no |
| <a name="input_on_host_maintenance"></a> [on\_host\_maintenance](#input\_on\_host\_maintenance) | Deprecated: Use the schedmd-slurm-gcp-v5-node-group module for defining node groups instead. | `string` | `null` | no |
| <a name="input_partition_conf"></a> [partition\_conf](#input\_partition\_conf) | Slurm partition configuration as a map.<br>See https://slurm.schedmd.com/slurm.conf.html#SECTION_PARTITION-CONFIGURATION | `map(string)` | `{}` | no |
| <a name="input_partition_name"></a> [partition\_name](#input\_partition\_name) | The name of the slurm partition. | `string` | n/a | yes |
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -159,10 +159,9 @@ variable "network_storage" {

variable "node_groups" {
description = <<-EOT
**Preview: This variable is still in development** A list of node groups
associated with this partition.
The default node group will be prepended to this list based on other input
variables to this module.
A list of node groups associated with this partition. See
schedmd-slurm-gcp-v5-node-group for more information on defining a node
group in a blueprint.
EOT
type = list(object({
access_config = list(object({
Expand Down

0 comments on commit 96db073

Please sign in to comment.