Skip to content

Commit

Permalink
Test
Browse files Browse the repository at this point in the history
  • Loading branch information
mbobrovskyi committed Dec 20, 2024
1 parent 0652d19 commit 346ae74
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/xpk/core/core.py
Original file line number Diff line number Diff line change
Expand Up @@ -1263,7 +1263,7 @@ def run_gke_node_pool_create_command(
if node_pool_name in node_pools_to_remain:
continue
command = (
'gcloud beta container node-pools create'
'gcloud beta container node-pools create --verbosity=debug'
f' {node_pool_name}'
f' --region={zone_to_region(args.zone)}'
f' --cluster={args.cluster}'
Expand Down Expand Up @@ -1328,7 +1328,7 @@ def run_gke_node_pool_create_command(
if node_pool_name in existing_node_pool_names:
continue
command = (
'gcloud beta container node-pools create'
'gcloud beta container node-pools create --verbosity=debug'
f' {node_pool_name} --node-version={gke_node_pool_version} --cluster={args.cluster} --project={args.project} --node-locations={args.zone} --region={zone_to_region(args.zone)} --num-nodes=1'
f' --machine-type={args.pathways_gce_machine_type} --scopes=storage-full,gke-default,{CLOUD_PLATFORM_AUTH_SCOPE_URL} --enable-autoscaling'
' --min-nodes=1 --max-nodes=20'
Expand Down

0 comments on commit 346ae74

Please sign in to comment.