Commit Graph

16989 Commits

Author SHA1 Message Date
Hugo Trippaers fe7b28ea0b Summary: Fixed typo in the documentation, reported by Roeland Kuipers 2012-11-05 15:23:48 +01:00
Rohit Yadav 49b4786de6 cli: don't search rule in apis, filter apis that start with that rule
Search verb in apis takes more time than filtering out apis that start with
that verb from the grammar.

Signed-off-by: Rohit Yadav <bhaisaab@apache.org>
2012-11-05 18:15:48 +05:30
Rohit Yadav 46ad8d6f4e cli: remind user to set host, port too
Signed-off-by: Rohit Yadav <bhaisaab@apache.org>
2012-11-05 18:15:47 +05:30
Wido den Hollander 4da02c0971 deb: Have the agent depend on the System ISO
This is needed for deploying System VMs on a KVM hypervisor

Without this ISO we can't deploy this System VMs
2012-11-05 10:28:13 +01:00
Wido den Hollander 4cb9e6d7d4 docs: Change filename of Deb repository file
These files should end with .list, otherwise Apt won't pick them up.
2012-11-05 10:23:09 +01:00
Wido den Hollander fb08e8b7e4 docs: Add RPM repository
The RPM packages are now also hosted on cloudstack.apt-get.eu

By adding this to the docs it makes life easier for people when installing.

Also replaced CloudStack by &PRODUCT; a couple of times
2012-11-05 10:21:43 +01:00
Alex Huang 91e68b5f2c A bunch of .project changes again 2012-11-04 19:25:03 -08:00
Rohit Yadav f940c566ab developer: Add developer-prefill.sql to be executed by developer profile
Removes all other custom sqlCommand configs, have the developer profile setup
from developer-prefill.sql file.

Signed-off-by: Rohit Yadav <bhaisaab@apache.org>
2012-11-04 01:58:50 +05:30
Rohit Yadav 2bbbdbf58b developer: Move custom sql commands to one prefill schema file
The sql-maven plugin does not allow multiple sqlCommands to executed, only the
last one in the <configuration> gets executed, so moving out all the developer
related schema to one file.

Adds:
  - ROOT domain
  - system and admin accounts
  - system and admin users
  - custom configurations

Signed-off-by: Rohit Yadav <bhaisaab@apache.org>
2012-11-04 01:57:05 +05:30
Rohit Yadav d8fbb0dd13 maven: enable jvm heap size for forked surefire test processes
Any forked process that runs from maven surefire plugin gets it own separate
heap which may cause build issues. Patch fixes the issue by explicity args to
the surefire plugin for cloud-server.

Signed-off-by: Rohit Yadav <bhaisaab@apache.org>
2012-11-03 18:42:51 +05:30
Radhika PC 863306260a fix for CLOUDSTACk-290:Reviewed:By-Jessica Tomechak 2012-11-03 17:40:58 +05:30
Pranav Saxena 04c5d89f80 CS-16681:Inconsistent behavior in custom disk offering selection page in Add VM instance wizard - Fixed by adding a Jquery bind event 2012-11-03 13:01:32 +05:30
Edison Su 7c9e30a6ea add more files 2012-11-02 17:44:28 -07:00
Brian Federle dfffa805bc Multi-edit: fix alignment of table rows and header 2012-11-02 12:38:23 -07:00
Jessica Wang e8a7a82389 cloudstack UI - infrastructure page - resource count - hide resource count whose API hasn't been fixed yet (i.e. zones count, hosts count, secondary storage count) and show resource count whose API has been fixed (i.e. pods count, clusters count, primary storage count, system VMs count, virtual routers count). 2012-11-02 11:21:17 -07:00
Jessica Wang cfdcc7ed15 cloudstack UI - infrastructure page - bring resource count back. 2012-11-02 11:20:52 -07:00
Jessica Wang 0d7ed63e20 CS-16573: cloudstack UI - VM Wizard - makeSelects() - sanitize output value. 2012-11-02 11:20:24 -07:00
Jessica Wang 83200abc18 CS-16573: cloudstack UI - create user - encode data passed to API call. 2012-11-02 11:19:57 -07:00
Alena Prokharchyk 1f458983af CS-16310: don't process Disconnect when:
* attache is not forForward()
* and the Disconnect came through cluster notification event

The fix will prevent delayed AgentDisconnect cluster notification processing.
2012-11-02 10:51:39 -07:00
Alena Prokharchyk 013102c028 CS-16611: when expunge Async job, expunge corresponding sync queue items
Conflicts:

	server/src/com/cloud/async/AsyncJobManagerImpl.java
	server/src/com/cloud/async/dao/SyncQueueItemDao.java
2012-11-02 10:51:29 -07:00
Alena Prokharchyk fe41325e96 ApiResponseSerializer - replaced all occurrences of string concatenation with StringBuffer.append
Conflicts:

	server/src/com/cloud/api/response/ApiResponseSerializer.java
2012-11-02 10:50:04 -07:00
Alena Prokharchyk 04a3c4ffdc Removed unneeded if statement from VpcVirtualNetworkApplianceManagerImpl 2012-11-02 10:47:34 -07:00
Alena Prokharchyk efb5f85aad CS-16594: when request is cancelled by the remote peer, in addition to cancelling the request, unblock the agent queue if the request is the current request 2012-11-02 10:47:24 -07:00
Alena Prokharchyk a5077968db CS-16592: process handleConnectedAgent in a separate thread pool 2012-11-02 10:47:14 -07:00
Alena Prokharchyk 3948d7d7c5 CS-16213: skip agent rebalancing when the management server doesn't own the host any more 2012-11-02 09:59:37 -07:00
Alena Prokharchyk 62607c9a75 HandleDisconnect - don't update the DB when the disconnect event is happening as a part of MS Cluster notification
Reviewed-by: Frank Zhang
2012-11-02 09:59:37 -07:00
Alena Prokharchyk 36babbfcac CS-16213: agent LB - don't process Disconnect event from other management server in cluster, if the recipient is the future owner of the host. The disconnect will be handled during the rebalance host connection process itself.
Reviewed-by: Kelven Yang
2012-11-02 09:59:37 -07:00
Alena Prokharchyk 705130e42c CS-16499: removed useless txn.commit statement. Used to call it to ensure that the lock() on nic object will get removed even in case when we don't do the DB update. But our Transaction code does it automatic 2012-11-02 09:59:37 -07:00
Alena Prokharchyk 597bc8c66c CS-16499: forgot to add @DB to releaseNic() call 2012-11-02 09:59:36 -07:00
Alena Prokharchyk 7bd7884f57 CS-16499: releaseNic - lock the nic row in the DB before checking its state. Hold the lock till the nics attributes + nicCount is updated
Conflicts:

	server/src/com/cloud/network/NetworkManagerImpl.java

Conflicts:

	server/src/com/cloud/network/NetworkManagerImpl.java
2012-11-02 09:59:36 -07:00
Pranav Saxena 49919bcc6f Merge branch 'master' of https://git-wip-us.apache.org/repos/asf/incubator-cloudstack 2012-11-02 11:09:18 +05:30
Pranav Saxena af7c8c42a5 CS-12436:Static NAT Enabled box: Button with VM label expands beyond the parent box due to length of the name 2012-11-02 11:08:32 +05:30
Edison Su 37c95dd11a add more files 2012-11-01 17:21:15 -07:00
Joe Brockmeier 7ffcd9e8bf CLOUDSTACK-291 Additional comment on install.sh upgrade path: Noted that users need to agree to changes suggested by Yum or APT. 2012-11-01 18:12:33 -05:00
Joe Brockmeier dee9264ddc CLOUDSTACK-385: Section 3.2.3 (MD5): confusing first sentence. Fixed this, though the entire section could probably do with a re-write. I think the existing instructions are overly complex. 2012-11-01 17:49:03 -05:00
Joe Brockmeier 5ddb6f251c CLOUDSTACK-392: Install Guide - fixed issue with minor correction needed in docs. 2012-11-01 17:44:08 -05:00
Joe Brockmeier bb38462b4f CLOUDSTACK-250 minor fix in documentation about maintenance mode. 2012-11-01 17:39:03 -05:00
Brian Federle 33a7f9ad9c Multi-edit table: add scrollbars for longer values
Add horizontal scrollbar to fix longer values (such as CIDR lists)
causing table to overflow.
2012-11-01 15:32:10 -07:00
Alex Huang 7397716fcd added missing files 2012-11-01 13:57:34 -07:00
Alex Huang 4b9990408d Changes in the API 2012-11-01 13:40:17 -07:00
Alex Huang 50f175e3f9 Finally got rid of create-index-fk.sql. Merged everything into create-schema.sql 2012-11-01 13:40:16 -07:00
Alex Huang 772f660c33 Changed the create database steps to be create from a single create-schema.sql and then apply database modifications 2012-11-01 13:40:15 -07:00
Pranav Saxena ed26f69868 CS-16630:UI freeze when accessing the Ip Addresses tab , when we are in the configuration of one of the ip addresses 2012-11-02 01:04:49 +05:30
Brian Federle 53072af8f7 CS-16295: Fix select project search box
Adds search functionality to 'select project' dialog's input box,
which was not sending value to the listProjects API
2012-11-01 12:17:39 -07:00
Joe Brockmeier db6c8f0176 CLOUDSTACK-439: Fixed typos and changed direct attached to shared network IPs 2012-11-01 14:12:49 -05:00
Rohit Yadav 51a5377d05 cli: add more verbs to grammar
Adds additional verbs to grammar of cli

Signed-off-by: Rohit Yadav <bhaisaab@apache.org>
2012-11-01 14:12:08 +05:30
Jessica Wang 8dd1991e6d CS-16662: cloudstack UI - IP Address page - VPN tab - pass domainId/account parameter to removeVpnUser API. 2012-10-31 16:30:17 -07:00
Joe Brockmeier 6b2d749041 Merge branch 'master' of https://git-wip-us.apache.org/repos/asf/incubator-cloudstack 2012-10-31 17:54:35 -05:00
Joe Brockmeier f39cd83999 Minor doc cleanup. 2012-10-31 17:53:56 -05:00
Jessica Wang e7fad41994 CS-16573: cloudstack UI - update network offering - encode data passed to API call. 2012-10-31 15:53:04 -07:00