1
0
mirror of https://github.com/OpenNebula/one.git synced 2025-02-15 05:57:23 +03:00

12464 Commits

Author SHA1 Message Date
Carlos Martín
12cf0ddb71 Feature #4217: Return individual errors in marketplace app export 2016-03-31 18:40:21 +02:00
Carlos Martín
d4789b3b5e Feature #4217: App export fills the name automatically 2016-03-31 17:47:24 +02:00
Carlos Martín
85ff319bb7 Feature #4217: Fix app export for names with spaces 2016-03-31 17:31:48 +02:00
Javi Fontan
51aff13b6e Merge branch 'master' into bug-4349 2016-03-31 17:08:21 +02:00
Carlos Martín
e2e8171c1d Feature #3204: Remove commit --recover from sunstone 2016-03-31 17:01:03 +02:00
Carlos Martín
b8c5fd4cd7 Feature #3848: Remove VLAN=YES from sunstone 2016-03-31 16:24:45 +02:00
Jaime Melis
494cb2e323 Quote the System Datastore in the output of the vCenter Driver
monitorization
2016-03-31 16:23:21 +02:00
Carlos Martín
84bdc6e6b1 Feature #3848: Small change for medium size windows 2016-03-31 15:51:42 +02:00
Carlos Martín
d078834f1a Feature #3848: Fix vnet update when VN_MAD is defined 2016-03-31 15:47:00 +02:00
Carlos Martín
3b15d7363f Fix typo 2016-03-31 13:07:07 +02:00
Carlos Martín
74860de425 Merge branch 'unistra-feature-3848' 2016-03-31 12:56:45 +02:00
Carlos Martín
0b413e7687 Feature #3204: Add the SG commit action to sunstone 2016-03-31 12:00:37 +02:00
Carlos Martín
76694ca85e Feature #3204: Fix onesecgroup commit description 2016-03-31 12:00:37 +02:00
Carlos Martín
866da68aad Add an explanation for the admin user star icon 2016-03-31 12:00:37 +02:00
Carlos Martín
8cbe0f3b34 Feature #3204: Show updated/updating secgroup VMs in sunstone 2016-03-31 12:00:37 +02:00
Daniel Molina
a2eda5b43f feature #4363: Fix provision vm create 2016-03-30 17:51:11 +02:00
Jaime Melis
9ca8ecf310 Feature #3204: Choose correct xpath filters 2016-03-30 15:53:26 +02:00
Tino Vazquez
1623570d92 Remove vCenter as System DS 2016-03-30 15:43:55 +02:00
Javi Fontan
4cc3d4e738 bug #4387: skip messages with empty actions
(cherry picked from commit ea86b2a9b100e87bb72ce920d594f4ee99ca0e26)
2016-03-30 15:36:32 +02:00
Carlos Martín
d62e6ec0c4 Feature #4369: New dialog to select multiple clusters in sunstone 2016-03-30 13:01:54 +02:00
Carlos Martín
34e4691c54 Feature #4369: Use datatables in confirm-with-select 2016-03-30 13:01:54 +02:00
Javi Fontan
129d1d375f bug #4386: ignore case retrieving appmarket size
(cherry picked from commit 11432a15457c4da18b6f44687881d4b03bb18a31)
2016-03-30 13:01:32 +02:00
Javi Fontan
c113fd2145 bug #4384: resolve parent path in the host
(cherry picked from commit c1a9c0b1233a6e3aae66424ff3bf969db649a3ef)
2016-03-30 13:01:21 +02:00
Javi Fontan
940a5be939 bug #4385: vcenter, retrieve just the required template
(cherry picked from commit 15784ab50d46f006415482b570886a128156af94)
2016-03-30 13:01:02 +02:00
Carlos Martín
e7c542b260 Feature #4369: Remove cluster none (-1) from sunstone drop-downs 2016-03-29 18:59:07 +02:00
Carlos Martín
f2a2ec5555 Feature #4369: Show multiple clusters in sunstone 2016-03-29 18:59:07 +02:00
Ruben S. Montero
8a187be48e feature #3848: Fix render problems and CLI options for VN_MAD 2016-03-29 15:09:39 +02:00
Ruben S. Montero
0e215381e6 Moved TM_MAD_CONF for vcenter to its section 2016-03-29 15:09:39 +02:00
Ruben S. Montero
9af43a6916 feature #3848 #3707: Remove VLAN from onevnet command and core 2016-03-29 15:09:39 +02:00
Daniel Molina
0ff9fc6075 Feature #4363: Add import_dialog action to all views 2016-03-29 13:24:02 +02:00
Daniel Molina
8413d20e24 Feature #4363: Fix Image and Datastore import_dialog button for vcenter 2016-03-29 13:14:21 +02:00
Daniel Molina
658748b420 Feature #4363: Use show instead of fadeIn for tabs 2016-03-29 12:54:42 +02:00
Daniel Molina
ef0f6034b7 Feature #4363: Fix conflict in admin_vcenter 2016-03-29 12:54:27 +02:00
Carlos Valiente
d5f48b22bd Fix output of `econe-describe-addresses
The current with of the IP address column is too small: The IP address "192.168.1.64", for instance, is 12 characters long, and gets truncated to "192.168.1.". Reserving 15 should do:

    irb(main):001:0> "XXX.XXX.XXX.XXX".length
    => 15
    irb(main):002:0>
2016-03-28 20:25:32 +01:00
Carlos Valiente
c7ed0950b1 Fix VM ID parsing in associate_address()
The current code in `ElasticIP::associate_address()` strips the leading `i-` prefix of VM instance IDs, if found, in order to convert EC2 instance IDs into OpenNebula VM IDs. Unfortunately that does not work for IDs greater than 7, since the stripped string is interpreted as an octal number due to the remaining leading 0's:

    $ econe-allocate-address
    $ econe-describe-addresses 
      publicIp                instanceId
    192.168.1.
    $ econe-associate-address 192.168.1.1 i-00000106
    $ econe-describe-addresses 
      publicIp                instanceId
    192.168.1.                i-00000070 

(Note that decimal 106 is octal 70)
2016-03-28 20:16:20 +01:00
Ruben S. Montero
ab1020d5ec feature #3848: Changes scope of some methods and constants. Use oned
escape_xml functions. Update fw driver to use VN_MAD at NIC level.
2016-03-28 12:40:38 +02:00
goberle
9de771ea31 Feature #3848: Virtual networks should have an associated networking driver.
(cherry picked from commit 7e90463693ef6639bd4f15f5b6f5079664f6a1e2)

This cherry still needs to merge files from original contribution by       goberle <goberle@unistra.fr>:
  - src/sunstone/public/app/tabs/vnets-tab/form-panels/wizard.hbs
2016-03-28 12:38:45 +02:00
Ruben S. Montero
c6076a173a bug #3390: Reimplements the xmlrpc client using the complex one. Adds
TIMEOUT to client requests. This can be configured in sched.conf/oned.conf.
2016-03-24 02:07:04 +01:00
Tino Vazquez
32f6073267 Add user inputs for datastore and resource pool at import time in
vCenter
2016-03-23 16:58:58 +01:00
Ruben S. Montero
e37625820b Merge branch 'feature-4155' 2016-03-23 15:50:12 +01:00
Tino Vazquez
6422d54e1c Fix for attach_disk in vCenter 2016-03-23 15:15:25 +01:00
Ruben S. Montero
f581fae756 feature #4155: Remove :detach & :suspend strategies for disk snapshots
for VMs in ACTIVE-RUNNING. Also revert needs to be performed in
poweroff. DISK_SNAPSHOT_REVERT state has been removed.
2016-03-22 23:07:35 +01:00
Ruben S. Montero
2fe760218e feature #4215: drop logic for MarketPlace is now in
RequestManagerDelete.
2016-03-22 15:26:21 +01:00
Ruben S. Montero
60c20ba0ee feature #4363: Comment out foundation.tab requires 2016-03-21 20:24:05 +01:00
Tino Vazquez
d1de439724 Fix for attach_disk failing in vCenter when VM does not have SCSI driver. 2016-03-21 17:47:40 +01:00
Tino Vazquez
69c33b8b41 feature #4186: Add vCenter datastore information to host monitoring 2016-03-21 17:47:40 +01:00
Ruben S. Montero
ef9001bfef feature #4369:Use CLUSTER_ID instead of CLUSTER_IDS for compatibility
reasons
2016-03-21 15:03:46 +01:00
Ruben S. Montero
95a27c40d4 Merge branch 'feature-4369' 2016-03-21 13:13:20 +01:00
Ruben S. Montero
3fb8a0e161 feature #4369: Better const signature. Removed unused varibles and
methods. ACL filter is generated in the ClusterPool class, moved DB name
to private scope. Copy constructor for object collection. Uniform
get_cluster_id function.
2016-03-21 13:01:45 +01:00
Daniel Molina
99e76f39fc Merge branch 'feature-4363' 2016-03-18 19:18:23 +01:00