You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: modules/gke-node-pool/metadata.display.yaml
+203-3Lines changed: 203 additions & 3 deletions
Original file line number
Diff line number
Diff line change
@@ -31,6 +31,15 @@ spec:
31
31
autoscaling:
32
32
name: autoscaling
33
33
title: Autoscaling
34
+
properties:
35
+
location_policy:
36
+
name: location_policy
37
+
title: Location Policy
38
+
enumValueLabels:
39
+
- label: ANY
40
+
value: ANY
41
+
- label: BALANCED
42
+
value: BALANCED
34
43
cluster:
35
44
name: cluster
36
45
title: Cluster
@@ -43,6 +52,7 @@ spec:
43
52
location:
44
53
name: location
45
54
title: Location
55
+
level: 1
46
56
management:
47
57
name: management
48
58
title: Management
@@ -58,9 +68,179 @@ spec:
58
68
network_config:
59
69
name: network_config
60
70
title: Network Config
71
+
properties:
72
+
network_performance_config:
73
+
name: network_performance_config
74
+
title: Network Performance Config
75
+
properties:
76
+
total_egress_bandwidth_tier:
77
+
name: total_egress_bandwidth_tier
78
+
title: Total Egress Bandwidth Tier
79
+
enumValueLabels:
80
+
- label: TIER_UNSPECIFIED
81
+
value: TIER_UNSPECIFIED
82
+
- label: TIER_1
83
+
value: TIER_1
61
84
node_config:
62
85
name: node_config
63
86
title: Node Config
87
+
properties:
88
+
disk_type:
89
+
name: disk_type
90
+
title: Disk Type
91
+
enumValueLabels:
92
+
- label: pd-standard
93
+
value: pd-standard
94
+
- label: pd-balanced
95
+
value: pd-balanced
96
+
- label: pd-ssd
97
+
value: pd-ssd
98
+
local_ssd_encryption_mode:
99
+
name: local_ssd_encryption_mode
100
+
title: Local SSD Encryption Mode
101
+
enumValueLabels:
102
+
- label: STANDARD_ENCRYPTION
103
+
value: STANDARD_ENCRYPTION
104
+
- label: EPHEMERAL_KEY_ENCRYPTION
105
+
value: EPHEMERAL_KEY_ENCRYPTION
106
+
logging_variant:
107
+
name: logging_variant
108
+
title: Logging Variant
109
+
enumValueLabels:
110
+
- label: DEFAULT
111
+
value: DEFAULT
112
+
- label: MAX_THROUGHPUT
113
+
value: MAX_THROUGHPUT
114
+
guest_accelerator:
115
+
name: guest_accelerator
116
+
title: Guest Accelerator
117
+
properties:
118
+
gpu_driver_installation_config:
119
+
name: gpu_driver_installation_config
120
+
title: GPU Driver Installation Config
121
+
properties:
122
+
gpu_driver_version:
123
+
name: gpu_driver_version
124
+
title: GPU Driver Version
125
+
enumValueLabels:
126
+
- label: DEFAULT
127
+
value: DEFAULT
128
+
- label: INSTALLATION_DISABLED
129
+
value: INSTALLATION_DISABLED
130
+
- label: LATEST
131
+
value: LATEST
132
+
- label: GPU_DRIVER_VERSION_UNSPECIFIED
133
+
value: GPU_DRIVER_VERSION_UNSPECIFIED
134
+
gpu_sharing_config:
135
+
name: gpu_sharing_config
136
+
title: GPU Sharing Config
137
+
properties:
138
+
gpu_sharing_strategy:
139
+
name: gpu_sharing_strategy
140
+
title: GPU Sharing Strategy
141
+
enumValueLabels:
142
+
- label: TIME_SHARING
143
+
value: TIME_SHARING
144
+
- label: MPS
145
+
value: MPS
146
+
oauth_scopes:
147
+
name: oauth_scopes
148
+
title: Oauth Scopes
149
+
subtext: A list of Google API scopes to be made available on all of the node VMs under the "default" service account. Use the "https://www.googleapis.com/auth/cloud-platform" scope to grant access to all APIs.
Copy file name to clipboardExpand all lines: modules/gke-node-pool/metadata.yaml
+3-3Lines changed: 3 additions & 3 deletions
Original file line number
Diff line number
Diff line change
@@ -127,7 +127,7 @@ spec:
127
127
interfaces:
128
128
variables:
129
129
- name: cluster
130
-
description: The cluster to create the node pool for. Cluster must be present in location provided for clusters. May be specified in the format projects/{{project}}/locations/{{location}}/clusters/{{cluster}} or as just the name of the cluster.
130
+
description: The cluster to create the node pool for. Cluster must be present in location provided for clusters. May be specified in the format projects/{{project_id}}/locations/{{location}}/clusters/{{cluster}} or as just the name of the cluster.
131
131
varType: string
132
132
required: true
133
133
connections:
@@ -136,7 +136,7 @@ spec:
136
136
version: ">=38.0.1"
137
137
spec:
138
138
outputExpr: cluster_id
139
-
- name: project
139
+
- name: project_id
140
140
description: The ID of the project in which to create the node pool.
141
141
varType: string
142
142
required: true
@@ -400,7 +400,7 @@ spec:
400
400
update: 45m
401
401
outputs:
402
402
- name: id
403
-
description: an identifier for the resource with format {{project}}/{{location}}/{{cluster}}/{{name}}
403
+
description: an identifier for the resource with format {{project_id}}/{{location}}/{{cluster}}/{{name}}
404
404
- name: instance_group_urls
405
405
description: The resource URLs of the managed instance groups associated with this node pool.
Copy file name to clipboardExpand all lines: modules/gke-node-pool/variables.tf
+2-2Lines changed: 2 additions & 2 deletions
Original file line number
Diff line number
Diff line change
@@ -15,11 +15,11 @@
15
15
*/
16
16
17
17
variable"cluster" {
18
-
description="The cluster to create the node pool for. Cluster must be present in location provided for clusters. May be specified in the format projects/{{project}}/locations/{{location}}/clusters/{{cluster}} or as just the name of the cluster."
18
+
description="The cluster to create the node pool for. Cluster must be present in location provided for clusters. May be specified in the format projects/{{project_id}}/locations/{{location}}/clusters/{{cluster}} or as just the name of the cluster."
19
19
type=string
20
20
}
21
21
22
-
variable"project" {
22
+
variable"project_id" {
23
23
description="The ID of the project in which to create the node pool."
0 commit comments