This page shows you how to create an Google Kubernetes Engine alpha cluster, which is a cluster with Kubernetes alpha features enabled in Google Kubernetes Engine. You can also read more about the types of clusters and about cluster architecture.
Before you begin
To prepare for this task, perform the following steps:
- Ensure that you have enabled the Google Kubernetes Engine API. Enable Google Kubernetes Engine API
- Ensure that you have installed the Cloud SDK.
- Set your default project ID:
gcloud config set project [PROJECT_ID]
- If you are working with zonal clusters, set your default compute zone:
gcloud config set compute/zone [COMPUTE_ZONE]
- If you are working with regional clusters, set your default compute region:
gcloud config set compute/region [COMPUTE_REGION]
- Update
gcloud
to the latest version:gcloud components update
- Be sure you understand the limitations of alpha clusters.
Creating an alpha cluster
You can create an alpha cluster using gcloud
or the Google Cloud Console.
gcloud
To create an alpha cluster, run the following command:
gcloud container clusters create [CLUSTER_NAME] \ --enable-kubernetes-alpha \ [--zone [COMPUTE_ZONE]] \ [--cluster-version [VERSION]]
where:
- [CLUSTER_NAME] is the name you choose for the cluster
- [COMPUTE_ZONE] is the Compute Engine [compute zone] in which to
create the cluster. The optional
--zone
flag overrides the defaultcompute/zone
property set bygcloud config set compute/zone
. Note: Your default compute zone must be set usinggcloud config set compute/zone [COMPUTE_ZONE]
or specified using--zone
. [VERSION] is the GKE version to run in the cluster. If unset, the cluster runs the current default version documented in Versioning and Upgrades.
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
To create an alpha cluster, perform the following steps:
Visit the Google Kubernetes Engine menu in Cloud Console.
Click Create cluster.
Choose the Standard cluster template or choose an appropriate template for your workload.
From the Cluster Version drop-down menu, select the desired GKE version to run in the cluster.
Configure your cluster as desired.
Click Advanced options. Near the bottom of the page, select Enable Kubernetes alpha features in this cluster.
Read and acknowledge the warning by selecting I understand the consequences.
Click Create.
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.