Skip to content

Commit f5568c0

Browse files
authored
fix: spelling mistakes. (GoogleCloudPlatform#5169)
1 parent df53797 commit f5568c0

13 files changed

Lines changed: 14 additions & 14 deletions

File tree

community/modules/compute/gke-nodeset/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -51,5 +51,5 @@
5151

5252
| Name | Description |
5353
|------|-------------|
54-
| <a name="output_nodeset_name"></a> [nodeset\_name](#output\_nodeset\_name) | Name of the new Slinky nodset |
54+
| <a name="output_nodeset_name"></a> [nodeset\_name](#output\_nodeset\_name) | Name of the new Slinky nodeset |
5555
<!-- END OF PRE-COMMIT-TERRAFORM DOCS HOOK -->

community/modules/compute/gke-nodeset/output.tf

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,6 @@
1313
# limitations under the License.
1414

1515
output "nodeset_name" {
16-
description = "Name of the new Slinky nodset"
16+
description = "Name of the new Slinky nodeset"
1717
value = local.nodeset.nodeset_name
1818
}

community/modules/compute/gke-partition/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ No modules.
2020

2121
| Name | Type |
2222
|------|------|
23-
| [google_storage_bucket_object.parition_config](https://registry.terraform.io/providers/hashicorp/google/latest/docs/resources/storage_bucket_object) | resource |
23+
| [google_storage_bucket_object.partition_config](https://registry.terraform.io/providers/hashicorp/google/latest/docs/resources/storage_bucket_object) | resource |
2424
| [google_storage_bucket.this](https://registry.terraform.io/providers/hashicorp/google/latest/docs/data-sources/storage_bucket) | data source |
2525

2626
## Inputs

community/modules/compute/gke-partition/main.tf

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@ locals {
4040
}
4141
}
4242

43-
resource "google_storage_bucket_object" "parition_config" {
43+
resource "google_storage_bucket_object" "partition_config" {
4444
bucket = data.google_storage_bucket.this.name
4545
name = "${var.slurm_bucket_dir}/partition_configs/${var.partition_name}.yaml"
4646
content = yamlencode(local.partition)

examples/gke-tpu-7x/gke-tpu-7x-job.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ spec:
2424
restartPolicy: Never
2525
nodeSelector:
2626
cloud.google.com/gke-tpu-accelerator: tpu7x
27-
cloud.google.com/gke-tpu-topology: <YOUR_TPU_TOPOLLOGY> # E.g. 2x2x1
27+
cloud.google.com/gke-tpu-topology: <YOUR_TPU_TOPOLOGY> # E.g. 2x2x1
2828
containers:
2929
- name: tpu-job
3030
image: python:3.12

modules/compute/gke-job-template/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -115,7 +115,7 @@ No modules.
115115
| <a name="input_node_pool_names"></a> [node\_pool\_names](#input\_node\_pool\_names) | A list of node pool names on which to run the job. Can be populated via `use` field. | `list(string)` | `[]` | no |
116116
| <a name="input_node_selectors"></a> [node\_selectors](#input\_node\_selectors) | A list of node selectors to use to place the job. | <pre>list(object({<br/> key = string<br/> value = string<br/> }))</pre> | `[]` | no |
117117
| <a name="input_persistent_volume_claims"></a> [persistent\_volume\_claims](#input\_persistent\_volume\_claims) | A list of objects that describes a k8s PVC that is to be used and mounted on the job. Generally supplied by the gke-persistent-volume module. | <pre>list(object({<br/> name = string<br/> namespace = string<br/> mount_path = string<br/> mount_options = string<br/> storage_type = string<br/> }))</pre> | `[]` | no |
118-
| <a name="input_random_name_sufix"></a> [random\_name\_sufix](#input\_random\_name\_sufix) | Appends a random suffix to the job name to avoid clashes. | `bool` | `true` | no |
118+
| <a name="input_random_name_suffix"></a> [random\_name\_suffix](#input\_random\_name\_suffix) | Appends a random suffix to the job name to avoid clashes. | `bool` | `true` | no |
119119
| <a name="input_requested_cpu_per_pod"></a> [requested\_cpu\_per\_pod](#input\_requested\_cpu\_per\_pod) | The requested cpu per pod. If null, allocatable\_cpu\_per\_node will be used to claim whole nodes. If provided will override allocatable\_cpu\_per\_node. | `number` | `-1` | no |
120120
| <a name="input_requested_gpu_per_pod"></a> [requested\_gpu\_per\_pod](#input\_requested\_gpu\_per\_pod) | The requested gpu per pod. If null, allocatable\_gpu\_per\_node will be used to claim whole nodes. If provided will override allocatable\_gpu\_per\_node. | `number` | `-1` | no |
121121
| <a name="input_restart_policy"></a> [restart\_policy](#input\_restart\_policy) | Job restart policy. Only a RestartPolicy equal to `Never` or `OnFailure` is allowed. | `string` | `"Never"` | no |

modules/compute/gke-job-template/main.tf

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -114,7 +114,7 @@ locals {
114114
}
115115
]
116116

117-
suffix = var.random_name_sufix ? "-${random_id.resource_name_suffix.hex}" : ""
117+
suffix = var.random_name_suffix ? "-${random_id.resource_name_suffix.hex}" : ""
118118
machine_family_node_selector = var.machine_family != null ? [{
119119
key = "cloud.google.com/machine-family"
120120
value = var.machine_family

modules/compute/gke-job-template/variables.tf

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -140,7 +140,7 @@ variable "backoff_limit" {
140140
default = 0
141141
}
142142

143-
variable "random_name_sufix" {
143+
variable "random_name_suffix" {
144144
description = "Appends a random suffix to the job name to avoid clashes."
145145
type = bool
146146
default = true

modules/compute/gke-node-pool/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -63,7 +63,7 @@ equivalent toleration is required. The `gke-job-template` module will
6363
automatically apply this toleration when using a node pool with GPUs.
6464

6565
Nvidia GPU drivers must be installed. The recommended approach for GKE to install
66-
GPU dirvers is by applying a DaemonSet to the cluster. See
66+
GPU drivers is by applying a DaemonSet to the cluster. See
6767
[these instructions](https://cloud.google.com/kubernetes-engine/docs/how-to/gpus#cos).
6868

6969
However, in some cases it may be desired to compile a different driver (such as

modules/scheduler/gke-cluster/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -142,7 +142,7 @@ limitations under the License.
142142

143143
| Name | Description | Type | Default | Required |
144144
|------|-------------|------|---------|:--------:|
145-
| <a name="input_additional_networks"></a> [additional\_networks](#input\_additional\_networks) | Additional network interface details for GKE, if any. Providing additional networks enables multi networking and creates relevat network objects on the cluster. | <pre>list(object({<br/> network = string<br/> subnetwork = string<br/> subnetwork_project = string<br/> network_ip = string<br/> nic_type = string<br/> stack_type = string<br/> queue_count = number<br/> access_config = list(object({<br/> nat_ip = string<br/> network_tier = string<br/> }))<br/> ipv6_access_config = list(object({<br/> network_tier = string<br/> }))<br/> alias_ip_range = list(object({<br/> ip_cidr_range = string<br/> subnetwork_range_name = string<br/> }))<br/> }))</pre> | `[]` | no |
145+
| <a name="input_additional_networks"></a> [additional\_networks](#input\_additional\_networks) | Additional network interface details for GKE, if any. Providing additional networks enables multi networking and creates relevant network objects on the cluster. | <pre>list(object({<br/> network = string<br/> subnetwork = string<br/> subnetwork_project = string<br/> network_ip = string<br/> nic_type = string<br/> stack_type = string<br/> queue_count = number<br/> access_config = list(object({<br/> nat_ip = string<br/> network_tier = string<br/> }))<br/> ipv6_access_config = list(object({<br/> network_tier = string<br/> }))<br/> alias_ip_range = list(object({<br/> ip_cidr_range = string<br/> subnetwork_range_name = string<br/> }))<br/> }))</pre> | `[]` | no |
146146
| <a name="input_authenticator_security_group"></a> [authenticator\_security\_group](#input\_authenticator\_security\_group) | The name of the RBAC security group for use with Google security groups in Kubernetes RBAC. Group name must be in format gke-security-groups@yourdomain.com | `string` | `null` | no |
147147
| <a name="input_autoscaling_profile"></a> [autoscaling\_profile](#input\_autoscaling\_profile) | (Beta) Optimize for utilization or availability when deciding to remove nodes. Can be BALANCED or OPTIMIZE\_UTILIZATION. | `string` | `"OPTIMIZE_UTILIZATION"` | no |
148148
| <a name="input_cloud_dns_config"></a> [cloud\_dns\_config](#input\_cloud\_dns\_config) | Configuration for Using Cloud DNS for GKE. <br/><br/> additive\_vpc\_scope\_dns\_domain: This will enable Cloud DNS additive VPC scope. Must provide a domain name that is unique within the VPC. For this to work cluster\_dns = "CLOUD\_DNS" and cluster\_dns\_scope = "CLUSTER\_SCOPE" must both be set as well.<br/> cluster\_dns: Which in-cluster DNS provider should be used. PROVIDER\_UNSPECIFIED (default) or PLATFORM\_DEFAULT or CLOUD\_DNS.<br/> cluster\_dns\_scope: The scope of access to cluster DNS records. DNS\_SCOPE\_UNSPECIFIED (default) or CLUSTER\_SCOPE or VPC\_SCOPE.<br/> cluster\_dns\_domain: The suffix used for all cluster service records. | <pre>object({<br/> additive_vpc_scope_dns_domain = optional(string)<br/> cluster_dns = optional(string, "PROVIDER_UNSPECIFIED")<br/> cluster_dns_scope = optional(string, "DNS_SCOPE_UNSPECIFIED")<br/> cluster_dns_domain = optional(string)<br/> })</pre> | <pre>{<br/> "additive_vpc_scope_dns_domain": null,<br/> "cluster_dns": "PROVIDER_UNSPECIFIED",<br/> "cluster_dns_domain": null,<br/> "cluster_dns_scope": "DNS_SCOPE_UNSPECIFIED"<br/>}</pre> | no |

0 commit comments

Comments
 (0)