Each user cluster requires its own user cluster configuration file. Decide if you want to generate a new user cluster configuration file and modify it, or copy an existing user cluster configuration file and modify it.
Locate the admin cluster's kubeconfig file. You reference this file when you specify the command to create the new user cluster.
Verify that enough IP addresses are available
Be sure that you have enough IP addresses allocated for the new user cluster.
Verifying that you have enough IP addresses depends on whether you're using a
DHCP server or static IPs.
In addition, be sure that you have enough IP addresses allocated for your admin
cluster. The admin cluster has one or three control-plane nodes for each user
cluster, and the admin cluster will need one or three additional control-plane
nodes for the user cluster you want to create. There must be enough IP addresses
available for all of those control-plane nodes. To upgrade your admin cluster to
have more IP addresses, see
Upgrading--verify that enough IP addresses are available.
DHCP
Verify that the DHCP server in the network in which the cluster will be created
has enough IP addresses. There should be more IP addresses than there will be
nodes running in the user cluster.
Static IPs
Verify that there are enough IP addresses set aside for the new cluster nodes that will be created in the existing admin cluster and in the new user cluster.
Create another user cluster configuration file
The new user cluster requires its own user cluster configuration file. You can either generate a new file, or copy an existing one. In each case, you must modify the settings for the new cluster.
To generate a new user cluster configuration file:
Now that you've populated a NEW_USER_CLUSTER_CONFIG file to match the specifications you want for the new user cluster, you can use that file to create this user cluster. Run the following command:
[[["Easy to understand","easyToUnderstand","thumb-up"],["Solved my problem","solvedMyProblem","thumb-up"],["Other","otherUp","thumb-up"]],[["Hard to understand","hardToUnderstand","thumb-down"],["Incorrect information or sample code","incorrectInformationOrSampleCode","thumb-down"],["Missing the information/samples I need","missingTheInformationSamplesINeed","thumb-down"],["Other","otherDown","thumb-down"]],["Last updated 2025-08-29 UTC."],[[["\u003cp\u003eAn admin cluster must be running before creating a new user cluster, which was established during the initial Google Distributed Cloud installation.\u003c/p\u003e\n"],["\u003cp\u003eA unique user cluster configuration file is needed for each user cluster, and you can create a new one or modify a copy of an existing file.\u003c/p\u003e\n"],["\u003cp\u003eYou must ensure sufficient IP addresses are available for the new user cluster, as well as the admin cluster which will require additional addresses for the new user cluster's control-plane nodes.\u003c/p\u003e\n"],["\u003cp\u003eThe creation of a user cluster involves using the \u003ccode\u003egkectl create-config cluster\u003c/code\u003e command to create a new configuration file, or copying an existing file, then modifying it with the desired settings, and lastly creating the user cluster using \u003ccode\u003egkectl create cluster\u003c/code\u003e while referencing the admin cluster's \u003ccode\u003ekubeconfig\u003c/code\u003e.\u003c/p\u003e\n"],["\u003cp\u003eTroubleshooting steps for cluster creation and upgrades are available in a separate dedicated section.\u003c/p\u003e\n"]]],[],null,["# Creating additional user clusters\n\nThis page explains how to create an additional user cluster for Google Distributed Cloud.\n\nBefore you begin\n----------------\n\n- Be sure that an admin cluster is running. You created an admin cluster when you [installed Google Distributed Cloud](/anthos/clusters/docs/on-prem/1.7/how-to/cloud-sdk).\n- Each user cluster requires its own user cluster configuration file. Decide if you want to generate a new user cluster configuration file and modify it, or copy an existing user cluster configuration file and modify it.\n- Locate the admin cluster's `kubeconfig` file. You reference this file when you specify the command to create the new user cluster.\n\n### Verify that enough IP addresses are available\n\nBe sure that you have enough IP addresses allocated for the new user cluster.\nVerifying that you have enough IP addresses depends on whether you're using a\nDHCP server or static IPs.\n\nIn addition, be sure that you have enough IP addresses allocated for your admin\ncluster. The admin cluster has one or three control-plane nodes for each user\ncluster, and the admin cluster will need one or three additional control-plane\nnodes for the user cluster you want to create. There must be enough IP addresses\navailable for all of those control-plane nodes. To upgrade your admin cluster to\nhave more IP addresses, see\n[Upgrading--verify that enough IP addresses are available](/anthos/clusters/docs/on-prem/1.7/how-to/upgrading#verify_ips). \n\n### DHCP\n\nVerify that the DHCP server in the network in which the cluster will be created\nhas enough IP addresses. There should be more IP addresses than there will be\nnodes running in the user cluster.\n\n### Static IPs\n\nVerify that there are enough IP addresses set aside for the new cluster nodes that will be created in the existing admin cluster and in the new user cluster.\n\nCreate another user cluster configuration file\n----------------------------------------------\n\nThe new user cluster requires its own user cluster configuration file. You can either generate a new file, or copy an existing one. In each case, you must modify the settings for the new cluster.\n\n- To generate a new user cluster configuration file:\n\n ```\n gkectl create-config cluster --config NEW_USER_CLUSTER_CONFIG\n ```\n\n Replace the following:\n - \u003cvar translate=\"no\"\u003eUSER_CLUSTER_CONFIG\u003c/var\u003e is the name you choose for the user cluster configuration file.\n - \u003cvar translate=\"no\"\u003eNEW_USER_CLUSTER_CONFIG\u003c/var\u003e is the name you choose for the copy of the user cluster configuration file.\n- Otherwise, locate an existing user cluster configuration file on your admin workstation. Run this command to copy this file to a new filename.\n\n ```\n cp USER_CLUSTER_CONFIG NEW_USER_CLUSTER_CONFIG\n ```\n\nModify this new user cluster configuration file as described in [Filling in your configuration file](/anthos/clusters/docs/on-prem/1.7/how-to/create-user-cluster#fill-in-configuration-file)\n\nCreate the user cluster\n-----------------------\n\nNow that you've populated a \u003cvar translate=\"no\"\u003eNEW_USER_CLUSTER_CONFIG\u003c/var\u003e file to match the specifications you want for the new user cluster, you can use that file to create this user cluster. Run the following command: \n\n```\ngkectl create cluster --config NEW_USER_CLUSTER_CONFIG --kubeconfig ADMIN_CLUSTER_KUBECONFIG\n```\n\nReplace the following:\n\n- \u003cvar translate=\"no\"\u003eNEW_USER_CLUSTER_CONFIG\u003c/var\u003e is the configuration file you just created. You might have chosen a different name for this file.\n- \u003cvar translate=\"no\"\u003eADMIN_CLUSTER_KUBECONFIG\u003c/var\u003e points to the existing admin cluster's `kubeconfig` file.\n\nTroubleshooting\n---------------\n\nSee\n[Troubleshoooting cluster creation and upgrade](/anthos/clusters/docs/on-prem/1.7/troubleshoot-cluster-creation-upgrade)."]]