Skip to content
Snippets Groups Projects
Select Git revision
  • 30fceb5fa900d96844d8ed152a3021f4b137caba
  • 11.x default protected
  • 10.5.x protected
  • 10.6.x protected
  • 11.2.x protected
  • 11.1.x protected
  • 10.4.x protected
  • 11.0.x protected
  • 10.3.x protected
  • 7.x protected
  • 10.2.x protected
  • 10.1.x protected
  • 9.5.x protected
  • 10.0.x protected
  • 9.4.x protected
  • 9.3.x protected
  • 9.2.x protected
  • 9.1.x protected
  • 8.9.x protected
  • 9.0.x protected
  • 8.8.x protected
  • 10.5.1 protected
  • 11.2.2 protected
  • 11.2.1 protected
  • 11.2.0 protected
  • 10.5.0 protected
  • 11.2.0-rc2 protected
  • 10.5.0-rc1 protected
  • 11.2.0-rc1 protected
  • 10.4.8 protected
  • 11.1.8 protected
  • 10.5.0-beta1 protected
  • 11.2.0-beta1 protected
  • 11.2.0-alpha1 protected
  • 10.4.7 protected
  • 11.1.7 protected
  • 10.4.6 protected
  • 11.1.6 protected
  • 10.3.14 protected
  • 10.4.5 protected
  • 11.0.13 protected
41 results

modules

  • Clone with SSH
  • Clone with HTTPS
  • Code owners
    Assign users and groups as approvers for specific file changes. Learn more.
    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