I created a Kubernetes cluster with the following CLI command:
gcloud container clusters create some-cluster --tags=some-tag --network=some-network
I would now like to:
- Disable the
--tags
option, so that new nodes/VMs are created without the tagsome-tag
. (Optional: Remove the tag from existing machines, which should be possible throughgcloud compute instances remove-tags
.) - Disable the
--network
flag, returning the cluster to the default GCP network.
Are either of these operations possible, or will I have to re-create the cluster?
For context, I was using the node tags and networking rules to route outgoing network traffic through a single GCE instance serving as a NAT gateway. I now want to turn this routing off.