Skip to content
Snippets Groups Projects
Select Git revision
  • master
  • 5.x default
  • 3333520-add-entity-type
  • 4.x
  • 3.x
  • 8.x-2.x
  • 8.x-1.x
  • 7.x-1.x
  • 6.x-1.x
  • 4.6.0
  • 5.0.0-rc2
  • 4.5.0
  • 5.0.0-rc1
  • 4.4.0
  • 5.0.0-beta2
  • 4.3.0
  • 5.0.0-beta1
  • 4.2.0
  • 5.0.0-alpha2
  • 5.0.0-alpha1
  • 4.1.0
  • 4.0.0
  • 4.0.0-rc2
  • 3.2.0
  • 4.0.0-rc1
  • 3.1.3
  • 4.0.0-beta2
  • 3.1.2
  • 3.1.1
29 results

cloud-3333520

  • Clone with SSH
  • Clone with HTTPS
  • Forked from project / cloud
    3475 commits behind, 9 commits ahead of the upstream repository.
    user avatar
    Yas Naoi authored
    1f46f33f
    History
    BASIC INFO
    ==========
    
    - Provides common functionalites for cloud management.
    - Cloud module is a heart of cloud package.  This requires at least one
      "cloud support module" such as AWS module, XCP and so on.
    - Once you install the 'Cloud' module be sure to grant the 'access dashboard' permission.
      Users with above permission can view all the running instances for the enabled sub-clouds. 
    - Be sure to only grant 'administer cloud' permission to the cloud administrator.
    
    e.g. (For an administrator)
    - Turn on
      'administer cloud' and
      'access dashboard' permissions 
     
    (For a generic users)
    - Turn on
      'access dashboard' permission only
    
    * Please see also cloud/modules/iaas/modules/aws_cloud/README.txt for AWS compatible cloud.  
    
    * After ver.1.1, the database schema has changed.  If you already install
      Clanavi 1.01 or less (before 06/10/2011), please uninstall and install modules.
    
    
    SYSTEM REQUIREMENTS
    ===================
    - PHP    5.2 or Higher
    - MySQL  5.1 or Higher
    - Drupal 6.x
    - 512MB Memory: If you use Amazon EC2 module, the running host of this
      system requires more than 512MB memory to download a list of images
     (because it's huge amount of data for listing).
    
    
    DIRECTORY STRUCTURE
    ===================
    
    cloud
      +-modules (depends on Cloud module) (Cloud is a core module for Cloud package)
        +-cloud_activity_audit
        +-cloud_alerts
        x-cloud_auto_scaling
        +-cloud_billing
        +-cloud_cluster
        +-cloud_dashboard
        +-cloud_failover
        +-cloud_inputs
        +-cloud_metering
        +-cloud_monitoring
        +-cloud_pricing
        +-cloud_resource_allocator
        x-cloud_scaling_manager
        +-cloud_scripting
        +-cloud_server_templates
    
        x... Not released yet.
    
    
    hook_* FOR SUBSIDIARY MODULES
    =============================
    
    * See also cloud/cloud.api.php
    
    * Example for Sub Cloud Family
      e.g. Amazon EC2, XCP and so on...
    
    function hook_cloud_set_info() {
      return array(
        'cloud_name'         => 'generic_cloud_context', // Used for cloud ID
        'cloud_display_name' => 'Generic Cloud'        , // Uuser for display name in menu, etc. 
        'instance_types'     => array(
        )
      );
    }
    
    function hook_server_template($op, $params = array())
    
      $form = array( // make some form);
      return $form;
    }
    
    
    CHANGE HISTORY
    ==============
    2011/12/21 ver.1.2  released 6.x-1.2
    2011/07/02 ver.1.1  released 6.x-1.1
    2011/06/13 ver.1.01 released 6.x-1.01
    2011/06/10 ver.1.0  released 6.x-1.0
    2011/06/02 ver.0.92 released 6.x-1.x-dev
    2011/04/05 ver.0.91 released to reviewing process of drupal.org
    2011/03/24 ver.0.9  released to reviewing process of drupal.org
    2011/01/29 ver.0.82 released to reviewing process of drupal.org
    2010/12/26 ver.0.81 released to reviewing process of drupal.org
    2010/12/15 ver.0.8  released to reviewing process of drupal.org
    2010/11/09 ver.0.7  released to reviewing process of drupal.org
    
    
    Copyright
    =========
    
    Copyright (c) 2010-2011 DOCOMO Innovations, Inc.
    
    End of README.txt