### Bug description After doing "gcloud components update" I went from version 377.0.0 to 379.0.0 and now user node-pools cannot be created the same way as in the guide. When running this command from from the [GKE kubernetes setup guide](https://zero-to-jupyterhub.readthedocs.io/en/latest/kubernetes/google/step-zero-gcp.html): ``` gcloud beta container node-pools create user-pool \ --machine-type n1-standard-2 \ --num-nodes 0 \ --enable-autoscaling \ --min-nodes 0 \ --max-nodes 3 \ --node-labels hub.jupyter.org/node-purpose=user \ --node-taints hub.jupyter.org_dedicated=user:NoSchedule \ --zone us-central1-b \ --cluster CLUSTERNAME ``` It outputs: ``` ERROR: (gcloud.beta.container.node-pools.create) ResponseError: code=400, message=Request contains an invalid argument." ``` After downgrading to 377.0.0 it works just fine however.