Skip to content

Commit b503f54

Browse files
committed
fix: custom nodepool arguments append
1 parent d390bff commit b503f54

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/xpk/core/nodepool.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -325,7 +325,7 @@ def run_gke_node_pool_create_command(
325325
if args.enable_workload_identity or args.enable_gcsfuse_csi_driver:
326326
command += ' --workload-metadata=GKE_METADATA'
327327

328-
command += args.custom_nodepool_arguments
328+
command += f' {args.custom_nodepool_arguments}'
329329

330330
task = f'NodepoolCreate-{node_pool_name}'
331331
create_commands.append(command)

0 commit comments

Comments
 (0)