Skip to content

Commit c68c7e2

Browse files
committed
devcloud: Fix default template url and deploydb error
- Fix the default builtin template url. The previous url is not reachable by public network. - Remove INSERT statement which already gets inserted in cloud.configuration by mvn -P developer -Ddeploydb Signed-off-by: Rohit Yadav <bhaisaab@apache.org>
1 parent 591cc59 commit c68c7e2

1 file changed

Lines changed: 1 addition & 2 deletions

File tree

tools/devcloud/devcloud.sql

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -26,8 +26,7 @@ INSERT INTO `cloud`.`configuration` (instance, name,value) VALUE('DEFAULT','cons
2626
INSERT INTO `cloud`.`configuration` (instance, name,value) VALUE('DEFAULT','ssvm.ram.size','100');
2727
INSERT INTO `cloud`.`configuration` (instance, name,value) VALUE('DEFAULT','ssvm.cpu.mhz','100');
2828
INSERT INTO `cloud`.`configuration` (instance, name, value) VALUE('DEFAULT', 'system.vm.use.local.storage', 'true');
29-
INSERT INTO `cloud`.`configuration` (instance, name, value) VALUE('DEFAULT', 'integration.api.port', '8096');
3029
UPDATE `cloud`.`configuration` SET value='10' where name = 'storage.overprovisioning.factor';
3130
UPDATE `cloud`.`configuration` SET value='10' where name = 'cpu.overprovisioning.factor';
3231
UPDATE `cloud`.`configuration` SET value='10' where name = 'mem.overprovisioning.factor';
33-
UPDATE `cloud`.`vm_template` SET unique_name="tiny Linux",name="tiny Linux",url="http://nfs1.lab.vmops.com/templates/ttylinux_pv.vhd",checksum="046e134e642e6d344b34648223ba4bc1",display_text="tiny Linux" where id=5;
32+
UPDATE `cloud`.`vm_template` SET unique_name="tiny Linux",name="tiny Linux",url="https://github.com/downloads/bhaisaab/incubator-cloudstack/ttylinux_pv.vhd",checksum="046e134e642e6d344b34648223ba4bc1",display_text="tiny Linux" where id=5;

0 commit comments

Comments
 (0)