operationType property

String? operationType
getter/setter pair

The operation type. Possible string values are:

  • "TYPE_UNSPECIFIED" : Not set.
  • "CREATE_CLUSTER" : The cluster is being created. The cluster should be assumed to be unusable until the operation finishes. In the event of the operation failing, the cluster will enter the ERROR state and eventually be deleted.
  • "DELETE_CLUSTER" : The cluster is being deleted. The cluster should be assumed to be unusable as soon as this operation starts. In the event of the operation failing, the cluster will enter the ERROR state and the deletion will be automatically retried until completed.
  • "UPGRADE_MASTER" : The cluster version is being updated. Note that this includes "upgrades" to the same version, which are simply a recreation. This also includes [auto-upgrades](https://cloud.google.com/kubernetes-engine/docs/concepts/cluster-upgrades#upgrading_automatically). For more details, see documentation on cluster upgrades.
  • "UPGRADE_NODES" : A node pool is being updated. Despite calling this an "upgrade", this includes most forms of updates to node pools. This also includes [auto-upgrades](https://cloud.google.com/kubernetes-engine/docs/how-to/node-auto-upgrades). This operation sets the progress field and may be canceled. The upgrade strategy depends on node pool configuration. The nodes are generally still usable during this operation.
  • "REPAIR_CLUSTER" : A problem has been detected with the control plane and is being repaired. This operation type is initiated by GKE. For more details, see documentation on repairs.
  • "UPDATE_CLUSTER" : The cluster is being updated. This is a broad category of operations and includes operations that only change metadata as well as those that must recreate the entire cluster. If the control plane must be recreated, this will cause temporary downtime for zonal clusters. Some features require recreating the nodes as well. Those will be recreated as separate operations and the update may not be completely functional until the node pools recreations finish. Node recreations will generally follow maintenance policies. Some GKE-initiated operations use this type. This includes certain types of auto-upgrades and incident mitigations.
  • "CREATE_NODE_POOL" : A node pool is being created. The node pool should be assumed to be unusable until this operation finishes. In the event of an error, the node pool may be partially created. If enabled, node autoprovisioning may have automatically initiated such operations.
  • "DELETE_NODE_POOL" : The node pool is being deleted. The node pool should be assumed to be unusable as soon as this operation starts.
  • "SET_NODE_POOL_MANAGEMENT" : The node pool's manamagent field is being updated. These operations only update metadata and may be concurrent with most other operations.
  • "AUTO_REPAIR_NODES" : A problem has been detected with nodes and they are being repaired. This operation type is initiated by GKE, typically automatically. This operation may be concurrent with other operations and there may be multiple repairs occurring on the same node pool.
  • "AUTO_UPGRADE_NODES" : Unused. Automatic node upgrade uses UPGRADE_NODES.
  • "SET_LABELS" : Unused. Updating labels uses UPDATE_CLUSTER.
  • "SET_MASTER_AUTH" : Unused. Updating master auth uses UPDATE_CLUSTER.
  • "SET_NODE_POOL_SIZE" : The node pool is being resized. With the exception of resizing to or from size zero, the node pool is generally usable during this operation.
  • "SET_NETWORK_POLICY" : Unused. Updating network policy uses UPDATE_CLUSTER.
  • "SET_MAINTENANCE_POLICY" : Unused. Updating maintenance policy uses UPDATE_CLUSTER.
  • "RESIZE_CLUSTER" : The control plane is being resized. This operation type is initiated by GKE. These operations are often performed preemptively to ensure that the control plane has sufficient resources and is not typically an indication of issues. For more details, see documentation on resizes.
  • "FLEET_FEATURE_UPGRADE" : Fleet features of GKE Enterprise are being upgraded. The cluster should be assumed to be blocked for other upgrades until the operation finishes.

Implementation

core.String? operationType;