You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@vcl.apache.org by "Josh Thompson (JIRA)" <ji...@apache.org> on 2014/10/01 15:21:34 UTC

[jira] [Updated] (VCL-566) Separate image type from OS in database

     [ https://issues.apache.org/jira/browse/VCL-566?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ]

Josh Thompson updated VCL-566:
------------------------------
    Fix Version/s:     (was: 2.4)

> Separate image type from OS in database
> ---------------------------------------
>
>                 Key: VCL-566
>                 URL: https://issues.apache.org/jira/browse/VCL-566
>             Project: VCL
>          Issue Type: Improvement
>          Components: database, vcld (backend), web gui (frontend)
>    Affects Versions: 2.2.1
>            Reporter: Andy Kurth
>
> The OS table could be normalized better.  It currently contains
> information about OS's (XP, linux, etc) and also install/image types
> (VMware, xCAT partimage, etc).  The OS table is growing exponentially
> as new OS's, provisioning engines, and image formats are added.  For
> example, the OS table has a Windows XP entry for bare metal xCAT
> (winxp) and VMware (vmwarewinxp).  Since support has been added for
> KVM and soon for Xen, 2 new entries would be added for XP alone.
> I propose adding an imagetype table to the database and changing the
> way images are mapped to their image type.  The imagetype table will
> replace the installtype table but contain similar data.  I think it
> adding new tables then removing the old ones will be an easier develop
> path as opposed to renaming tables, changing relationships, and coding
> all at once.
> The imagetype table will contain data such as:
> imagetype.id  imagetype.name
> 1                   partimage
> 2                   lab
> 3                   kickstart
> 4                   vmdk
> 5                   qcow2
> Images are currently mapped to their install/image type via the OS
> table:  image.OS --> OS.installtype --> installtype.name.  The OS
> table will be taken out of this path by adding an image.imagetypeid
> column which points to the imagetype table and removing the
> OS.installtype column.  This will result in images being mapped to
> their type via image.imagetypeid --> imagetype.name.  This will allow
> the OS table to be greatly simplified.  Only 1 entry will need to
> exist for each OS.
> A provisioningimagetype table would also be added replacing the
> provisioningOSintalltype table.  This will map provisioning engines to
> image types since some provisioning engines can support multiple image
> types.



--
This message was sent by Atlassian JIRA
(v6.3.4#6332)