Repository: cloudstack Updated Branches: refs/heads/master ad051e850 -> ce390e907
update devcloud-kvm sql file for easier dev deployment Project: http://git-wip-us.apache.org/repos/asf/cloudstack/repo Commit: http://git-wip-us.apache.org/repos/asf/cloudstack/commit/ce390e90 Tree: http://git-wip-us.apache.org/repos/asf/cloudstack/tree/ce390e90 Diff: http://git-wip-us.apache.org/repos/asf/cloudstack/diff/ce390e90 Branch: refs/heads/master Commit: ce390e907c274f7b5dd41ec27a4ae033f09f3cb4 Parents: ad051e8 Author: Marcus Sorensen <[email protected]> Authored: Wed Jul 2 17:52:47 2014 -0600 Committer: Marcus Sorensen <[email protected]> Committed: Wed Jul 2 17:52:47 2014 -0600 ---------------------------------------------------------------------- tools/devcloud-kvm/devcloud-kvm.sql | 29 +++++------------------------ 1 file changed, 5 insertions(+), 24 deletions(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/cloudstack/blob/ce390e90/tools/devcloud-kvm/devcloud-kvm.sql ---------------------------------------------------------------------- diff --git a/tools/devcloud-kvm/devcloud-kvm.sql b/tools/devcloud-kvm/devcloud-kvm.sql index 6d559a9..4759ddb 100644 --- a/tools/devcloud-kvm/devcloud-kvm.sql +++ b/tools/devcloud-kvm/devcloud-kvm.sql @@ -15,27 +15,8 @@ -- specific language governing permissions and limitations -- under the License. - -INSERT INTO `cloud`.`disk_offering` (id, name, uuid, display_text, created, use_local_storage, type, disk_size) VALUES (17, 'tinyOffering', UUID(), 'tinyOffering', NOW(), 1, 'Service', 0); -INSERT INTO `cloud`.`service_offering` (id, cpu, speed, ram_size) VALUES (17, 1, 100, 128); -INSERT INTO `cloud`.`disk_offering` (id, name, uuid, display_text, created, type, disk_size) VALUES (18, 'tinyDiskOffering', UUID(), 'tinyDiskOffering', NOW(), 'Disk', 1073741824); -INSERT INTO `cloud`.`configuration` (instance, name,value) VALUE('DEFAULT','router.ram.size', '100'); -INSERT INTO `cloud`.`configuration` (instance, name,value) VALUE('DEFAULT','router.cpu.mhz','100'); -INSERT INTO `cloud`.`configuration` (instance, name,value) VALUE('DEFAULT','console.ram.size','100'); -INSERT INTO `cloud`.`configuration` (instance, name,value) VALUE('DEFAULT','console.cpu.mhz', '100'); -INSERT INTO `cloud`.`configuration` (instance, name,value) VALUE('DEFAULT','ssvm.ram.size','100'); -INSERT INTO `cloud`.`configuration` (instance, name,value) VALUE('DEFAULT','ssvm.cpu.mhz','100'); -INSERT INTO `cloud`.`configuration` (instance, name, value) VALUE('DEFAULT', 'system.vm.use.local.storage', 'true'); -INSERT INTO `cloud`.`configuration` (instance, name, value) VALUE('DEFAULT', 'expunge.workers', '3'); -INSERT INTO `cloud`.`configuration` (instance, name, value) VALUE('DEFAULT', 'expunge.delay', '60'); -INSERT INTO `cloud`.`configuration` (instance, name, value) VALUE('DEFAULT', 'expunge.interval', '60'); -INSERT INTO `cloud`.`configuration` (instance, name, value) VALUE('DEFAULT', 'enable.ec2.api', 'true'); -INSERT INTO `cloud`.`configuration` (instance, name, value) VALUE('DEFAULT', 'enable.s3.api', 'true'); -INSERT INTO `cloud`.`configuration` (instance, name, value) VALUE('DEFAULT', 'host', '192.168.100.10'); -INSERT INTO `cloud`.`configuration` (instance, name, value) VALUE('DEFAULT', 'management.network.cidr', '192.168.100.0/24'); -INSERT INTO `cloud`.`configuration` (instance, name, value) VALUE('DEFAULT', 'secstorage.allowed.internal.sites', '192.168.0.0/8'); -UPDATE `cloud`.`configuration` SET value='10' where name = 'storage.overprovisioning.factor'; -UPDATE `cloud`.`configuration` SET value='10' where name = 'cpu.overprovisioning.factor'; -UPDATE `cloud`.`configuration` SET value='10' where name = 'mem.overprovisioning.factor'; -UPDATE `cloud`.`vm_template` SET unique_name="tiny CentOS 6.3",name="tiny CentOS 6.3",url="http://marcus.mlsorensen.com/cloudstack-extras/tiny-centos-63.qcow2",checksum="4bbb806aa8570f4dfac13b4c38ea1603",display_text="tiny CentOS 6.3",format='QCOW2',hypervisor_type='KVM' where id=5; -UPDATE `cloud`.`vm_template` SET url="http://dontdownloadthistemplate" where id=4; +UPDATE cloud.configuration SET value=8096 WHERE name='integration.api.port'; +UPDATE cloud.configuration SET value='true' WHERE name='system.vm.use.local.storage'; +UPDATE cloud.configuration SET value='false' WHERE name='consoleproxy.restart'; +UPDATE cloud.configuration SET value='172.17.10.10' WHERE name='host'; +UPDATE cloud.vm_template SET unique_name="tiny CentOS 6.3",name="tiny CentOS 6.3",url="http://marcus.mlsorensen.com/cloudstack-extras/tiny-centos-63.qcow2",checksum="4bbb806aa8570f4dfac13b4c38ea1603",display_text="tiny CentOS 6.3",format='QCOW2',hypervisor_type='KVM' WHERE id=4;
