Interface ProvisionProvider

All Superinterfaces:
PluginProvider
All Known Subinterfaces:
CloudNativeProvisionProvider, ComputeProvisionProvider, HostProvisionProvider, ProvisionProvider, ResourceProvisionProvider, VmProvisionProvider, WorkloadProvisionProvider
All Known Implementing Classes:
AbstractProvisionProvider

public interface ProvisionProvider extends PluginProvider
Provides methods for interacting with the provisioning engine of Morpheus. This is akin to dealing with requests made from "Add Instance" or from Application Blueprints
Since:
0.8.0
  • Method Details

    • getProvisionTypeCode

      default String getProvisionTypeCode()
      Some older clouds have a provision type code that is the exact same as the cloud code. This allows one to set it to match and in doing so the provider will be fetched via the cloud providers CloudProvider.getDefaultProvisionTypeCode() method.
      Returns:
      code for overriding the ProvisionType record code property
    • getCircularIcon

      default Icon getCircularIcon()
      Provide an icon to be displayed for ServicePlans, VM detail page, etc. where a circular icon is displayed
      Returns:
      Icon
      Since:
      0.13.6
    • getOptionTypes

      default Collection<OptionType> getOptionTypes()
      Provides a Collection of OptionType inputs that need to be made available to various provisioning Wizards
      Returns:
      Collection of OptionTypes
    • getNodeOptionTypes

      default Collection<OptionType> getNodeOptionTypes()
      Provides a Collection of OptionType inputs for configuring node types
      Returns:
      Collection of OptionTypes
      Since:
      0.9.0
    • getRootVolumeStorageTypes

      default Collection<StorageVolumeType> getRootVolumeStorageTypes()
      Provides a Collection of StorageVolumeTypes that are available for root StorageVolumes
      Returns:
      Collection of StorageVolumeTypes
    • getDataVolumeStorageTypes

      default Collection<StorageVolumeType> getDataVolumeStorageTypes()
      Provides a Collection of StorageVolumeTypes that are available for data StorageVolumes
      Returns:
      Collection of StorageVolumeTypes
    • getServicePlans

      default Collection<ServicePlan> getServicePlans()
      Provides a Collection of $ServicePlan related to this ProvisionProvider that can be seeded in. Some clouds do not use this as they may be synced in from the public cloud. This is more of a factor for On-Prem clouds that may wish to have some precanned plans provided for it.
      Returns:
      Collection of ServicePlan sizes that can be seeded in at plugin startup.
    • getComputeServerInterfaceTypes

      default Collection<ComputeServerInterfaceType> getComputeServerInterfaceTypes()
      Provides a Collection of ComputeServerInterfaceType related to this ProvisionProvider
      Returns:
      Collection of ComputeServerInterfaceType
    • getTemplateParameters

      default Collection<TemplateParameter> getTemplateParameters(ResourceSpecTemplate template, String fileContent, Map opts)
      Provides a Collection of TemplateParameter to describe the options for the ResourceSpecTemplate for this ProvisionProvider
      Parameters:
      template - The ResourceSpecTemplate
      fileContent - The file content of the template
      opts - Additional options
      Returns:
      Collection of TemplateParameter objects to describe the options for the ResourceSpecTemplate
      Since:
      0.15.4
    • hasDatastores

      default Boolean hasDatastores()
      Determines if this provision type has datastores that can be selected or not.
      Returns:
      Boolean representation of whether or not this provision type has datastores
    • hasNetworks

      default Boolean hasNetworks()
      Determines if this provision type has networks that can be selected or not.
      Returns:
      Boolean representation of whether or not this provision type has networks
    • hasPlanTagMatch

      default Boolean hasPlanTagMatch()
      Determines if this provision type supports service plans that expose the tag match property.
      Returns:
      Boolean representation of whether or not service plans expose the tag match property.
    • hasComputeZonePools

      default Boolean hasComputeZonePools()
      Determines if this provision type has ComputeZonePools that can be selected or not.
      Returns:
      Boolean representation of whether or not this provision type has ComputeZonePools
    • computeZonePoolRequired

      default Boolean computeZonePoolRequired()
      Indicates if a ComputeZonePool is required during provisioning
      Returns:
      Boolean
    • canAddVolumes

      default Boolean canAddVolumes()
      Indicates if volumes may be added during provisioning
      Returns:
      Boolean
    • canCustomizeRootVolume

      default Boolean canCustomizeRootVolume()
      Indicates if the root volume may be customized during provisioning. For example, the size changed
      Returns:
      Boolean
    • disableRootDatastore

      default Boolean disableRootDatastore()
      Indicates if a Datastore on a root volume on a ComputeServer is configurable
      Returns:
      Boolean
    • hasConfigurableSockets

      default Boolean hasConfigurableSockets()
      Indicates if the sockets are configurable when deploying a ComputeServer via a custom plan
      Returns:
      Boolean
    • supportsCustomServicePlans

      default Boolean supportsCustomServicePlans()
      Custom service plans can be created for this provider
      Returns:
      Boolean
    • hasNodeTypes

      default Boolean hasNodeTypes()
      Indicates if this provider supports node types
      Returns:
      Boolean
    • getNodeFormat

      default String getNodeFormat()
      The node format for this provider valid options are: vm, server, container
      Returns:
      String
    • getDeployTargetService

      default String getDeployTargetService()
      The name of the deployment service for this provider valid options include: vmDeployTargetService, dockerDeployTargetService, kubernetesDeployTargetService, and cloudFoundryDeployTargetService
      Returns:
      String
    • hasCloneTemplate

      default Boolean hasCloneTemplate()
      Indicates if this provider supports cloning a vm to a template
      Returns:
      Boolean
    • customSupported

      default Boolean customSupported()
      Indicates if this provider supports custom layouts
      Returns:
      Boolean
    • lvmSupported

      default Boolean lvmSupported()
      Indicates if this provider supports LVM instances
      Returns:
      Boolean
    • serverType

      default String serverType()
      Indicates if this provider should set a server type different from its code, e.g. "service" or "vm"
      Returns:
      String
    • getViewSet

      default String getViewSet()
      Used to retrieve if the provision provider uses a NON standard set of views to render part of the provisioning wizard
      Returns:
      String
    • requiresVirtualImage

      default Boolean requiresVirtualImage()
      By default, provision providers require a virtual image (ami, ovf/vmdk, etc) in order to provision an instance. However, some service based instance types do not require a virtual image (Amazon RDS for example)
      Returns:
      Boolean
    • supportsAgent

      default Boolean supportsAgent()
      Override this method to return false if its a provision type that does not support the morpheus agent install. This will be the case for provision types of non standard operating systems or service based provision types (Amazon RDS for example)
      Returns:
    • createDefaultInstanceType

      default Boolean createDefaultInstanceType()
      For most provision types, a default instance type is created upon plugin registration. Override this method if you do NOT want to create a default instance type for your provision provider
      Returns:
      defaults to true
    • multiTenant

      default Boolean multiTenant()
      Does this provision type allow more than one instance on a box
      Returns:
    • aclEnabled

      default Boolean aclEnabled()
      Can control firewall rules on the instance
      Returns:
    • getHostDiskMode

      default String getHostDiskMode()
    • hasSecurityGroups

      default Boolean hasSecurityGroups()
      Can control security groups for instances using this provision provider
      Returns:
    • canCustomizeDataVolumes

      default Boolean canCustomizeDataVolumes()
      Indicates if data volumes may be customized during provisioning. For example, the size changed
      Returns:
      Boolean
    • canResizeRootVolume

      default Boolean canResizeRootVolume()
      Indicates if the root volume may be resized
      Returns:
      Boolean
    • canReconfigureNetwork

      default Boolean canReconfigureNetwork()
      Indicates if the network can be changed
      Returns:
      Boolean
    • hasStorageControllers

      default Boolean hasStorageControllers()
      Indicates if StorageControllers are utilized
      Returns:
      Boolean
    • supportsAutoDatastore

      default Boolean supportsAutoDatastore()
      Indicates if automatic Datastore selection is supported
      Returns:
      Boolean
    • networksScopedToPools

      default Boolean networksScopedToPools()
      Indicates if Network selection should be scoped to the ComputeZonePool selected during provisioning
      Returns:
      Boolean
    • getMaxNetworks

      default Integer getMaxNetworks()
      Returns the maximum number of network interfaces that can be chosen when provisioning with this type
      Returns:
      maximum number of networks or 0,null if unlimited.
    • getHostType

      default HostType getHostType()
      Returns the host type that is to be provisioned
      Returns:
      HostType
    • getVirtualImages

      default Collection<VirtualImage> getVirtualImages()
      Provides a Collection of VirtualImage related to this ProvisionProvider. This provides a way to specify known VirtualImages in the Cloud environment prior to a typical 'refresh' on a Cloud. These are often used in predefined layouts. For example, when building up ComputeTypeLayouts via the MorpheusComputeTypeLayoutFactoryService
      Returns:
      Collection of VirtualImage
    • getComputeTypeLayouts

      default Collection<ComputeTypeLayout> getComputeTypeLayouts()
      Provides a Collection of ComputeTypeLayout related to this ProvisionProvider. These define the types of clusters that are exposed for this ProvisionProvider. ComputeTypeLayouts have a collection of ComputeTypeSets, which reference a ContainerType. When returning this structure from implementations, it is often helpful to start with the ComputeTypeLayoutFactory to construct the default structure and modify fields as needed.
      Returns:
      Collection of ComputeTypeLayout