Ensure stateful workloads are disruption-ready


Applications running in Google Kubernetes Engine (GKE) clusters must be prepared for disruptions such as node upgrades and other maintenance events. Stateful applications, which often need time to cleanly stop I/O and unmount from storage, are especially vulnerable to disruptions. You can use Kubernetes features such as Pod Disruption Budgets (PDBs) and Readiness Probes to help keep applications available during upgrades.

GKE monitors your clusters and uses the Recommender service to deliver guidance for how you can optimize your usage of the platform. GKE detects opportunities to prepare your workloads for disruption and provides guidance on how to update your PDBs or readiness probes to maximize the resiliency of your workloads to disruption. For example, if a StatefulSet is not protected by a PDB, your cluster might remove all Pods at once during a node upgrade. To avoid this, GKE delivers guidance to create a PDB so that most Pods can stay running during an upgrade.

To see the specific conditions where GKE delivers disruption-related guidance, see When GKE identifies workloads with vulnerability to disruption.

To learn more about how to manage insights and recommendations from Recommenders, see Optimize your usage of GKE with insights and recommendations.

Identify workloads with vulnerability to disruption

GKE generates insights identifying your cluster's disruption-vulnerable workloads. To get these insights, follow the instructions to view insights and recommendations using the Google Cloud CLI, or the Recommender API. Use the subtypes listed in the following section to filter for specific insights. These insights are not available in the Google Cloud console.

When GKE identifies workloads with vulnerability to disruption

See the following table for scenarios where GKE delivers an insight and recommendation, and the relevant subtype:

Insight subtype Description Action
PDB_UNPROTECTED_STATEFULSET Alerts when a StatefulSet exists where no existing PDB labels match the StatefulSet's Pod selector labels. This means that all Pods in the StatefulSet can be taken down during an event such as a node upgrade. Add a PDB whose labels match the ones in the StatefulSet's Pod selector field. Specify in that PDB how much of a disruption can be tolerated by the StatefulSet. The recommendation associated with this insight suggests what labels a PDB should set to cover the mentioned StatefulSet.
PDB_UNPERMISSIVE Alerts when a PDB matching a Pod is impossible to adhere to for any maintenance activities, such as a node upgrade. A PDB must allow for at least one Pod to be disrupted, so GKE violates this PDB for necessary maintenance after one hour. Adjust either the PDB's minAvailable setting to be less than the total Pod count, or the maxUnavailable setting to be greater than zero.
PDB_STATEFULSET_WITHOUT_PROBES Alerts when a StatefulSet is configured with a PDB but without readiness probes, so the PDB is not as effective in gauging application readiness. PDBs respect readiness probes when they look at which Pods can be counted as healthy. Therefore, if a Pod covered by a PDB does not have a readiness probe configured, the PDB has limited visibility into whether the Pod is healthy or is just up and running. Add readiness probes to Pods in StatefulSets for the PDB mentioned in the insight. We also recommend that you add liveness probes.

Implement the guidance to improve disruption readiness

If you've received insights and recommendations for workloads in your cluster and you want to improve their disruption readiness, implement the instructions described in the recommendation and the action for that insight subtype, as seen in the previous section.

Recommendations are assessed once daily, so it may take up to 24 hours for them to resolve after changes have been implemented. If it has been less than 24 hours since you've implemented the guidance of the recommendation, you can mark the recommendation as resolved. If you do not want to implement the recommendation, you can dismiss it.

What's next