Commit 1f348dd Lily Pan
committed
1 parent 5626c10 commit 1f348dd Copy full SHA for 1f348dd
File tree 3 files changed +18
-13
lines changed
3 files changed +18
-13
lines changed Original file line number Diff line number Diff line change 1716
1716
- name: --enable-secure-boot
1717
1717
type: bool
1718
1718
short-summary: Enable Secure Boot on agent node pool. Must use VMSS agent pool type.
1719
- - name: --disable-secure-boot
1720
- type: bool
1721
- short-summary: Disable Secure Boot on agent node pool.
1722
1719
- name: --enable-vtpm
1723
1720
type: bool
1724
1721
short-summary: Enable vTPM on agent node pool. Must use VMSS agent pool type.
1725
- - name: --disable-vtpm
1726
- type: bool
1727
- short-summary: Disable vTPM on agent node pool.
1728
1722
examples:
1729
1723
- name: Create a nodepool in an existing AKS cluster with ephemeral os enabled.
1730
1724
text: az aks nodepool add -g MyResourceGroup -n nodepool1 --cluster-name MyManagedCluster --node-osdisk-type Ephemeral --node-osdisk-size 48
Original file line number Diff line number Diff line change @@ -1182,9 +1182,7 @@ def aks_agentpool_add(
1182
1182
skip_gpu_driver_install = False ,
1183
1183
# trusted launch
1184
1184
enable_secure_boot = False ,
1185
- disable_secure_boot = False ,
1186
1185
enable_vtpm = False ,
1187
- disable_vtpm = False ,
1188
1186
):
1189
1187
# DO NOT MOVE: get all the original parameters and save them as a dictionary
1190
1188
raw_parameters = locals ()
Original file line number Diff line number Diff line change @@ -157,11 +157,6 @@ aks update:
157
157
azure_container_storage_nodepools :
158
158
rule_exclusions :
159
159
- option_length_too_long
160
- enable_secure_boot :
161
- rule_exclusions :
162
- - option_length_too_long
163
- enable_vtpm :
164
- - option_length_too_long
165
160
aks delete :
166
161
parameters :
167
162
ignore_pod_disruption_budget :
@@ -235,11 +230,29 @@ aks nodepool add:
235
230
skip_gpu_driver_install :
236
231
rule_exclusions :
237
232
- option_length_too_long
233
+ enable_secure_boot :
234
+ rule_exclusions :
235
+ - option_length_too_long
236
+ enable_vtpm :
237
+ rule_exclusions :
238
+ - option_length_too_long
238
239
aks nodepool update :
239
240
parameters :
240
241
enable_artifact_streaming :
241
242
rule_exclusions :
242
243
- option_length_too_long
244
+ enable_secure_boot :
245
+ rule_exclusions :
246
+ - option_length_too_long
247
+ disable_secure_boot :
248
+ rule_exclusions :
249
+ - option_length_too_long
250
+ enable_vtpm :
251
+ rule_exclusions :
252
+ - option_length_too_long
253
+ disable_vtpm :
254
+ rule_exclusions :
255
+ - option_length_too_long
243
256
aks nodepool delete :
244
257
parameters :
245
258
ignore_pod_disruption_budget :
You can’t perform that action at this time.
0 commit comments