This page shows you how to create a Google Kubernetes Engine (GKE) alpha cluster, which is a cluster with Kubernetes alpha features enabled in GKE. You can also read more about cluster configuration choices and about cluster architecture.
Before you begin
Before you start, make sure you have performed the following tasks:
- Enable the Google Kubernetes Engine API. Enable Google Kubernetes Engine API
- If you want to use the Google Cloud CLI for this task,
install and then
initialize the
gcloud CLI. If you previously installed the gcloud CLI, get the latest
version by running
gcloud components update
.
- Ensure you have the correct permission to create clusters. At minimum, you should be a Kubernetes Engine Cluster Admin.
- Be sure you understand the limitations of alpha clusters.
Create an alpha cluster
You can create an alpha cluster by using the gcloud CLI or the Google Cloud console.
gcloud
Run the following command:
gcloud container clusters create CLUSTER_NAME \
--enable-kubernetes-alpha \
--no-enable-autorepair \
--no-enable-autoupgrade \
--region COMPUTE_REGION
Replace the following:
CLUSTER_NAME
: the name you choose for the cluster.COMPUTE_REGION
: the Compute Engine region for the cluster. For zonal clusters, use the--zone COMPUTE_ZONE
option.--cluster-version VERSION
: (optional) specifies the GKE version to run in the cluster. If omitted, the cluster runs the current default version documented in Versioning and upgrades.
You can optionally use the
--service-account=SERVICE_ACCOUNT_NAME@PROJECT_ID.iam.gserviceaccount.com
flag to specify a different IAM service account that nodes
in your cluster's first node pool uses instead of the Compute Engine
default service account. This flag is optional, but we strongly recommend
that you create and use a minimally-privileged service account
so that your nodes don't have more privileges that they require.
You are prompted to acknowledge a warning that the alpha cluster is not upgraded and is deleted after 30 days:
This will create a cluster with all Kubernetes Alpha features enabled.
- This cluster will not be covered by the GKE SLA and should
not be used for production workloads.
- You will not be able to upgrade the master or nodes.
- The cluster will be deleted after 30 days.
Console
Go to the Google Kubernetes Engine page in the Google Cloud console.
Click add_box Create.
In the Cluster basics section, complete the following:
- Enter the Name for your cluster.
- For the Location type, select Zonal, and then select the desired zone for your cluster.
- If you are creating a multi-zonal cluster, select the Specify default node locations checkbox, and then choose additional zones in which you'd like the node pools to run.
For the Control plane version, select Static version, then choose a GKE version.
From the navigation pane, under Node Pools, click default-pool.
In the Node pool details section, complete the following:
- Enter a Name for the default Node pool.
- For static version nodes, choose the Node version.
- Enter the Number of nodes to create in the cluster. You must have available resource quota for the nodes and their resources (such as firewall routes).
- Clear Enable auto-upgrade and Enable auto-repair.
From the navigation pane, under Node Pools, click Nodes.
From the Image type drop-down list, select the desired node image.
Choose the default Machine configuration to use for the instances. Each machine type is billed differently. The default machine type is
e2-medium
. For machine type pricing information, refer to the machine type price sheet.From the Boot disk type drop-down list, select the desired disk type.
Enter the Boot disk size.
Optional: From the navigation pane, under Node Pools, click Security.
Optional: From the Service account drop-down list, select an Identity and Access Management (IAM) service account for your applications to use when calling Google Cloud APIs. We recommend that you use a minimally privileged service account instead of using the default service account, so that your nodes don't have more privileges that they require.
Optional (available with GKE Enterprise): If you want to register your new cluster to a fleet, follow the Google Cloud console instructions for Create and register a new cluster to complete your cluster registration.
From the navigation pane, under Cluster, click Features.
Click Enable Kubernetes alpha features in this cluster.
Read and acknowledge the warning by selecting I understand the consequences.
Click Create.
Interact with a cluster using kubectl
After you create a cluster, you need to
configure kubectl
before you can interact with the cluster from the command line.
Check when an alpha cluster expires
To check when alpha clusters expire, run the following command:
gcloud container clusters list
What's next
- Learn more about the types of clusters you can create.
- Learn about managing your clusters.
- Learn how to delete clusters.