~sebastian-scalr/openstack-platform-php/trunk

« back to all changes in this revision

Viewing changes to templates/en_US/tab_fa_ebs.tpl

  • Committer: DicsyDel
  • Date: 2010-01-14 09:49:24 UTC
  • Revision ID: svn-v4:ea022c65-b648-0410-8974-0d324702c27d:trunk:247
1.2.0 Stable Release
Events system improvements:
* Added new events: OnDNSZoneUpdated, OnEBSVolumeAttached

Scripting engine improvements:
* Added the %zone_name% variable for scripts executed on DNSZoneUpdate event
* Added the %new_ip_address% variable for scripts executed on IPAddressChanged event
* Added the %volume_id% and %mountpoint% variables for scripts executed on EBSVolumeMounted event
* The ability to execute scripts from the Scripts view page.

Snapshots manager improvements:
* Remove multiple snapshots in one time
* Share snapshots!

API improvements:
* Added methods: LaunchInstance, TerminateInstance, GetFarmDetails, GetScriptDetails, RebootInstance, GetEvents, GetLogs
* Added methods for working with DNS zones: ListDNSZones, ListDNSZoneRecords, AddDNSZoneRecord and RemoveDNSZoneRecord
* Improved the ExecuteScript method.
* Added LA for each instance to the GetFarmDetails method
* Added the ability to execute scripts with specified revision and parameters

Core improvements:
* Amazon RDS support
* Amazon Spot instances support.
* Amazon CloudWatch support (fine grained monitoring)
* Amazon VPC support (enterprise feature, deploy on non-shared servers)
* Rewrote the “Synchronize to all” feature. Cleaner and more reliable now.
* Same goes for AutoEBS and AutoEIP. Cleaner and more reliable.
* When you create a new AMI for a custom role, you can now switch over to it immediately.
* And the long awaited “Keep me logged in” checkbox on the login page!
* Filters for instances on the Servers view page.
* CloudFront distributions for domains not managed by Scalr.
* The ability to remove Elastic Load Balancers.
* Support for new region: us-west-1 (deploy on the west coast!)
* A new page with more details on the instance.
* Increased page load speed. Optimized js code. (faster, better interface!)
* An improved MySQL status page for your Farms
* The ability to set whether Scalr should terminate or reboot instances that fail to respond to SNMP calls.
* The ability to slowdown the scaling process
* Support for new instance types, the high memory instances (32 and 68GB of memory)
* The ability to add Google Apps MX records in the Zone Edit page in a single click.
* The ability to edit system DNS records. For advanced clients.
* The ability to set both size and snapshot for Role auto EBS (previously just one)
* Added ability to edit farm role specified security group
* Added Hide terminated instances checkbox on instances list.
* Added ability to view all instances (include non-scalr ones)
* Added ability to set system timezone for clients (Logs, Events, API logs)
* Fixed bug in garbage.php with “select all” checkbox
* Fixed bug with default SSH port (see thread)
* More than 200 bugs was fixed and tons of other internal improvements.

Show diffs side-by-side

added added

removed removed

Lines of Context:
14
14
                                <td colspan="2">When instance based on this role boots up:</td>
15
15
                        </tr>
16
16
                        <tr>
17
 
                                <td colspan="2"><input onclick="ShowEBSOptions(this.value);" type="radio" name="ebs_ctype" checked value="1" style="vertical-align:middle;"> Do not use EBS</td>
 
17
                                <td colspan="2"><input onclick="ShowEBSOptions(this.checked);" class="role_settings" type="checkbox" id="aws.use_ebs" name="aws.use_ebs" checked value="1" style="vertical-align:middle;"> Automatically attach EBS volume with the following options:</td>
18
18
                        </tr>
19
19
                        <tr>
20
 
                                <td colspan="2">
 
20
                                <td width="15%">Size: </td>
 
21
                                <td>
21
22
                                        <div style="float:left;">
22
 
                                                <input onclick="ShowEBSOptions(this.value);" type="radio" name="ebs_ctype" value="2" style="vertical-align:middle;"> Attach empty volume with size:
23
 
                                                <input style="vertical-align:middle;" type="text" id="ebs_size" name="ebs_size" value="1" class="text" size="3"> GB
 
23
                                                <input style="vertical-align:middle;" type="text" id="aws.ebs_size" disabled name="aws.ebs_size" value="1" class="role_settings text" size="3"> GB
24
24
                                        </div>                                                                          
25
25
                                </td>
26
26
                        </tr>
27
27
                        <tr>
28
 
                                <td colspan="2"><input onclick="ShowEBSOptions(this.value);" type="radio" {if $snapshots|@count == 0}disabled{/if} name="ebs_ctype" value="3" style="vertical-align:middle;"> Attach volume from snapshot:
29
 
                                        <select {if $snapshots|@count == 0}disabled{/if} style="vertical-align:middle;" id="ebs_snapid" name="ebs_snapid" class="text">
30
 
                                        {section name=sid loop=$snapshots}
31
 
                                        <option {if $snapId == $snapshots[sid]}selected{/if} value="{$snapshots[sid]}">{$snapshots[sid]}</option>
32
 
                                        {sectionelse}
33
 
                                        <option value="">No snapshots found</option>
34
 
                                        {/section}
 
28
                                <td>Snapshot: </td>
 
29
                                <td>
 
30
                                        <select disabled style="vertical-align:middle;" id="aws.ebs_snapid" name="aws.ebs_snapid" class="role_settings text">
 
31
                                        <option value=""></option>
 
32
                                        {foreach from=$snapshots key=key item=item}
 
33
                                                <option {if $snapId == $key}selected{/if} value="{$key}">{$key} (Created: {$item.createdat} Size: {$item.size}GB)</option>
 
34
                                        {foreachelse}
 
35
                                                <option value="">No snapshots found</option>
 
36
                                        {/foreach}
35
37
                                        </select>
36
38
                                </td>
37
39
                        </tr>
39
41
                                <td colspan="2">
40
42
                                        <div id="ebs_mount_options" style="display:none;">
41
43
                                        <br />
42
 
                                        <input type="checkbox" onclick="$('ebs_mountpoint').disabled = !this.checked;" id="ebs_mount" style="vertical-align:middle;"> Automatically mount device to <input type="text" class="text" id="ebs_mountpoint" disabled size="10" value="/mnt/storage"> mount point.
 
44
                                        <input type="checkbox" class="role_settings" onclick="$('aws.ebs_mountpoint').disabled = !this.checked;" id="aws.ebs_mount" name="aws.ebs_mount" style="vertical-align:middle;"> Automatically mount device to <input type="text" class="role_settings text" id="aws.ebs_mountpoint" name="aws.ebs_mountpoint" disabled size="10" value="/mnt/storage"> mount point.
43
45
                                        </div>
44
46
                                </td>
45
47
                        </tr>