Update debian, alpine, add rockylinux
This commit is contained in:
8
capsulflask/schema_migrations/22_down_os_updates.sql
Normal file
8
capsulflask/schema_migrations/22_down_os_updates.sql
Normal file
@ -0,0 +1,8 @@
|
||||
DELETE FROM os_images WHERE id = 'rockylinux';
|
||||
DELETE FROM os_images WHERE id = 'alpine315';
|
||||
DELETE FROM os_images WHERE id = 'debian11';
|
||||
|
||||
UPDATE os_images SET deprecated = FALSE WHERE id = 'debian10';
|
||||
UPDATE os_images SET deprecated = FALSE WHERE id = 'alpine313';
|
||||
|
||||
UPDATE schemaversion SET version = 21;
|
13
capsulflask/schema_migrations/22_up_os_updates.sql
Normal file
13
capsulflask/schema_migrations/22_up_os_updates.sql
Normal file
@ -0,0 +1,13 @@
|
||||
INSERT INTO os_images (id, template_image_file_name, description, deprecated)
|
||||
VALUES ('rockylinux', 'rockylinux/8/root.img.qcow2', 'Rocky Linux 8', FALSE);
|
||||
|
||||
INSERT INTO os_images (id, template_image_file_name, description, deprecated)
|
||||
VALUES ('alpine315', 'alpine/3.15/root.img.qcow2', 'Alpine Linux 3.15', FALSE);
|
||||
|
||||
INSERT INTO os_images (id, template_image_file_name, description, deprecated)
|
||||
VALUES ('debian11', 'debian/11/root.img.qcow2', 'Debian 11 (bullseye)', FALSE);
|
||||
|
||||
UPDATE os_images SET deprecated = TRUE WHERE id = 'debian10';
|
||||
UPDATE os_images SET deprecated = TRUE WHERE id = 'alpine313';
|
||||
|
||||
UPDATE schemaversion SET version = 22;
|
Reference in New Issue
Block a user