Views:
Profile applicability: Level 1
Alpha clusters are not covered by an SLA and are not production-ready.
Alpha clusters are designed for early adopters to experiment with workloads that take advantage of new features before those features are production-ready. They have all Kubernetes API features enabled, but are not covered by the GKE SLA, do not receive security updates, have node auto-upgrade and node auto-repair disabled, and cannot be upgraded. They are also automatically deleted after 30 days.
Note
Note
By default, Kubernetes Alpha features are disabled.

Impact

Users and workloads will not be able to take advantage of features included within Alpha clusters.

Audit

Using Google Cloud Console
  1. Go to Kubernetes Engine by visiting Google Cloud Console Kubernetes Engine page.
  2. If a cluster appears under the 'Kubernetes alpha clusters' heading, it is an Alpha cluster.
Using Command Line
First define 2 variables for Cluster Name, Location and Project and then run the command:
gcloud container clusters describe $CLUSTER_NAME --location $LOCATION -- project $PROJECT_ID --format json | jq '.enableKubernetesAlpha'
The output of the above command will return true if it is an Alpha cluster.

Remediation

Alpha features cannot be disabled. To remediate, a new cluster must be created.
Using Google Cloud Console
  1. Go to Kubernetes Engine by visiting Google Cloud documentation
  2. Click CREATE CLUSTER, and choose "SWITCH TO STANDARD CLUSTER" in the upper right corner of the screen.
  3. Under Features in the CLUSTER section, "Enable Kubernetes alpha features in this cluster" will not be available by default and to use Kubernetes alpha features in this cluster, first disable release channels. Note: It will only be available if the cluster is created with a Static version for the Control plane version, along with both Automatically upgrade nodes to the next available version and Enable auto-repair being checked under the Node pool details for each node.
  4. Configure the other settings as required and click CREATE.
Using Command Line:
Upon creating a new cluster
gcloud container clusters create <cluster name> --location <location>
Do not use the --enable-kubernetes-alpha argument.