ENUM

ClusterCreateValidations

Description

List of all validations to perform.

link GraphQL Schema definition

  • enum ClusterCreateValidations {
  • # Perform all checks.
  • ALL_CHECKS
  • # Check if the instance profile is valid.
  • AWS_INSTANCE_PROFILE_CHECK
  • # Check if the AWS network config is valid, if passed.
  • AWS_NETWORK_CONFIG_CHECK
  • # Check if the availability zone exists in the specified Azure region.
  • AZURE_AVAILABILITY_ZONE_CHECK
  • # Check if the managed identity is valid and supported.
  • AZURE_MI_CHECK
  • # Check if sufficient quota is available to launch the cluster nodes.
  • AZURE_QUOTA_CHECK
  • # Check if names of the VMs to be created on Azure are valid.
  • AZURE_VM_IMAGE_CHECK
  • # Check if the selected cloud account supports cluster provisioning.
  • CLOUD_ACCOUNT_CHECK
  • # Check if a cluster exists with the same name.
  • CLUSTER_NAME_CHECK
  • # Validate DNS servers in the request.
  • DNS_SERVERS_CHECK
  • # Check if the immutability config is valid in the request.
  • IMMUTABILITY_CHECK
  • # Check if the node count is supported for the cluster type and version.
  • NODE_COUNT_CHECK
  • # Skip all checks.
  • NO_CHECKS
  • # Validate NTP servers in the request.
  • NTP_SERVERS_CHECK
  • # Check if the selected object store is supported by the cloud cluster.
  • OBJECT_STORE_CHECK
  • }