Create a New GCP Cluster
Name your Cluster
Give your cluster a unique name suitable for your environment. The cluster name may only contain the following characters:
a-z
,0-9
,.
, and-
. Cluster creation will fail if the name has capital letters. See Kubernetes for more naming information.In GCP it is critical that the name is unique, as no two clusters in the same GCP account can have the same name.
Set the environment variable:
CODEexport CLUSTER_NAME=<gcp-example>
To increase Docker Hub's rate limit use your Docker Hub credentials when creating the cluster, by setting the following flag --registry-mirror-url=https://registry-1.docker.io --registry-mirror-username=<username> --registry-mirror-password=<password>
on the dkp create cluster
command.
Create a New GCP Cluster
Availability zones (AZs) are isolated locations within data center regions from which public cloud services originate and operate. Because all the nodes in a node pool are deployed in a single Availability Zone, you may wish to create additional node pools is to ensure your cluster has nodes deployed in multiple Availability Zones.
By default, the control-plane Nodes will be created in 3 different zones. However, the default worker Nodes will reside in a single zone. You may create additional node pools in other zones with the dkp create nodepool
command. The default region for the availability zones is us-west1
.
Google Cloud Platform does not publish images. You must first build the image using Konvoy Image Builder.
Create an image using Konvoy Image Builder (KIB) and then export the image name:
BASHexport IMAGE_NAME=projects/${GCP_PROJECT}/global/images/<image_name_from_kib>
Ensure your subnets do not overlap with your host subnet because they cannot be changed after cluster creation. If you need to change the kubernetes subnets, you must do this at cluster creation. The default subnets used in DKP are:
CODEspec: clusterNetwork: pods: cidrBlocks: - 192.168.0.0/16 services: cidrBlocks: - 10.96.0.0/12
(Optional) Modify Control Plane Audit logs - Users can make modifications to the
KubeadmControlplane
cluster-api object to configure differentkubelet
options. See the following guide if you wish to configure your control plane beyond the existing options that are available from flags.(Optional) Determine what VPC Network to use. All GCP accounts come with a preconfigured VPC Network named
default
, which will be used if you do not specify a different network.
To use a different VPC network for your cluster, create one by following these instructions for Create and Manage VPC Networks. Then specify the--network <new_vpc_network_name>
option on the create cluster command below. More information is available on GCP Cloud Nat and network flag.
(Optional) Use a registry mirror. Configure your cluster to use an existing local registry as a mirror when attempting to pull images previously pushed to your registry.
Create a Kubernetes cluster. The following example shows a common configuration. See dkp create cluster gcp reference for the full list of cluster creation options.
CODEdkp create cluster gcp \ --cluster-name=${CLUSTER_NAME} \ --additional-tags=owner=$(whoami) \ --with-gcp-bootstrap-credentials=true \ --project=${GCP_PROJECT} \ --image=${IMAGE_NAME} \ --dry-run \ --output=yaml \ > ${CLUSTER_NAME}.yaml
Expand the drop-downs for HTTP and other flags to use during the cluster creation step above. For more information regarding this flag or others, please refer to the CLI section of the documentation for dkp create cluster and select your provider.
Inspect or edit the cluster objects and familiarize yourself with Cluster API before editing the cluster objects as edits can prevent the cluster from deploying successfully. See GCP Customizing CAPI Clusters
(Optional) Modify Control Plane Audit logs - Users can make modifications to the
KubeadmControlplane
cluster-api object to configure differentkubelet
options. See the following guide if you wish to configure your control plane beyond the existing options that are available from flags.Create the cluster from the objects generated from the
dry run
. A warning will appear in the console if the resource already exists and will require you to remove the resource or update your YAML.CODEkubectl create -f ${CLUSTER_NAME}.yaml
NOTE: If you used the
--output-directory
flag in yourdkp create .. --dry-run
step above, create the cluster from the objects you created by specifying the directory:CODEkubectl create -f <existing-directory>/.
Wait for the cluster control-plane to be ready:
CODEkubectl wait --for=condition=ControlPlaneReady "clusters/${CLUSTER_NAME}" --timeout=20m
After the objects are created on the API server, the Cluster API controllers reconcile them. They create infrastructure and machines. As they progress, they update the Status of each object. Konvoy provides a command to describe the current status of the cluster:
CODEdkp describe cluster -c ${CLUSTER_NAME}
DKP uses the GCP CSI driver as the default storage provider. Use a Kubernetes CSI compatible storage that is suitable for production. See the Kubernetes documentation called Changing the Default Storage Class for more information.
If you’re not using the default, you cannot deploy an alternate provider until after the dkp create cluster
is finished. However, it must be determined before Kommander installation.