Return-Path: X-Original-To: archive-asf-public-internal@cust-asf2.ponee.io Delivered-To: archive-asf-public-internal@cust-asf2.ponee.io Received: from cust-asf.ponee.io (cust-asf.ponee.io [163.172.22.183]) by cust-asf2.ponee.io (Postfix) with ESMTP id 3537B200BD5 for ; Thu, 8 Dec 2016 20:10:01 +0100 (CET) Received: by cust-asf.ponee.io (Postfix) id 34099160B1F; Thu, 8 Dec 2016 19:10:01 +0000 (UTC) Delivered-To: archive-asf-public@cust-asf.ponee.io Received: from mail.apache.org (hermes.apache.org [140.211.11.3]) by cust-asf.ponee.io (Postfix) with SMTP id 5404D160B27 for ; Thu, 8 Dec 2016 20:10:00 +0100 (CET) Received: (qmail 44299 invoked by uid 500); 8 Dec 2016 19:09:59 -0000 Mailing-List: contact issues-help@cloudstack.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: dev@cloudstack.apache.org Delivered-To: mailing list issues@cloudstack.apache.org Received: (qmail 44210 invoked by uid 500); 8 Dec 2016 19:09:59 -0000 Delivered-To: apmail-incubator-cloudstack-issues@incubator.apache.org Received: (qmail 44191 invoked by uid 99); 8 Dec 2016 19:09:59 -0000 Received: from arcas.apache.org (HELO arcas) (140.211.11.28) by apache.org (qpsmtpd/0.29) with ESMTP; Thu, 08 Dec 2016 19:09:59 +0000 Received: from arcas.apache.org (localhost [127.0.0.1]) by arcas (Postfix) with ESMTP id 31BD32C03DD for ; Thu, 8 Dec 2016 19:09:59 +0000 (UTC) Date: Thu, 8 Dec 2016 19:09:59 +0000 (UTC) From: "ASF subversion and git services (JIRA)" To: cloudstack-issues@incubator.apache.org Message-ID: In-Reply-To: References: Subject: [jira] [Commented] (CLOUDSTACK-9654) Missing hypervisor mapping of various SUSE Linux guest os versions on VMware 6.0 MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: 7bit X-JIRA-FingerPrint: 30527f35849b9dde25b450d4833f0394 archived-at: Thu, 08 Dec 2016 19:10:01 -0000 [ https://issues.apache.org/jira/browse/CLOUDSTACK-9654?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=15733137#comment-15733137 ] ASF subversion and git services commented on CLOUDSTACK-9654: ------------------------------------------------------------- Commit f03015b25b84aa8a858423233e0b56ab95f26e11 in cloudstack's branch refs/heads/4.9 from [~rohit.yadav@shapeblue.com] [ https://git-wip-us.apache.org/repos/asf?p=cloudstack.git;h=f03015b ] Merge pull request #1817 from sateesh-chodapuneedi/pr-cloudstack-9654 CLOUDSTACK-9654 Missing hypervisor mapping of various SUSE Linux gues**Jira** CLOUDSTACK-9654 Missing hypervisor mapping of various SUSE Linux guest os versions on VMware 6.0 **Issue:** Currently many versions of SUSE Linux does not have any hypervisor mapping entry in guest_os_hypervisor table in cloud database for VMware 6.0. Also observed that the guest_os_name field is incorrect for some SUSE Linux variants, which results in deployed instance (with SUSE Linux) set to guest OS type as "Other (64-bit)" on vCenter, which would not represent the guest OS accurately on hypervisor. **Fix:** Add the missing hypervisor mappings Signed-off-by: Sateesh Chodapuneedi The current (4.9) list of SUSE Linux guest os in database looks as below, ``` > mysql> select id,display_name from guest_os where display_name like '%suse%'; +-----+----------------------------------------------+ | id | display_name | +-----+----------------------------------------------+ | 40 | SUSE Linux Enterprise Server 9 SP4 (32-bit) | | 41 | SUSE Linux Enterprise Server 10 SP1 (32-bit) | | 42 | SUSE Linux Enterprise Server 10 SP1 (64-bit) | | 43 | SUSE Linux Enterprise Server 10 SP2 (32-bit) | | 44 | SUSE Linux Enterprise Server 10 SP2 (64-bit) | | 45 | SUSE Linux Enterprise Server 10 SP3 (64-bit) | | 46 | SUSE Linux Enterprise Server 11 (32-bit) | | 47 | SUSE Linux Enterprise Server 11 (64-bit) | | 96 | SUSE Linux Enterprise 8(32-bit) | | 97 | SUSE Linux Enterprise 8(64-bit) | | 107 | SUSE Linux Enterprise 9(32-bit) | | 108 | SUSE Linux Enterprise 9(64-bit) | | 109 | SUSE Linux Enterprise 10(32-bit) | | 110 | SUSE Linux Enterprise 10(64-bit) | | 151 | SUSE Linux Enterprise Server 10 SP3 (32-bit) | | 152 | SUSE Linux Enterprise Server 10 SP4 (64-bit) | | 153 | SUSE Linux Enterprise Server 10 SP4 (32-bit) | | 154 | SUSE Linux Enterprise Server 11 SP1 (64-bit) | | 155 | SUSE Linux Enterprise Server 11 SP1 (32-bit) | | 185 | SUSE Linux Enterprise Server 11 SP2 (64-bit) | | 186 | SUSE Linux Enterprise Server 11 SP2 (32-bit) | | 187 | SUSE Linux Enterprise Server 11 SP3 (64-bit) | | 188 | SUSE Linux Enterprise Server 11 SP3 (32-bit) | | 202 | Other SUSE Linux(32-bit) | | 203 | Other SUSE Linux(64-bit) | | 244 | SUSE Linux Enterprise Server 12 (64-bit) | +-----+----------------------------------------------+ 26 rows in set (0.00 sec) ``` The current (4.9) hypervisor mappings for SUSE Linux guest os over VMware 6.0 in database looks as below. We can observe in the below query result, which lists all hypervisor mappings for SUSE Linux guest OS over VMware 6.0, many guest os listed in above query result are missing their mappings for VMware 6.0. Hence the need to add the missing hypervisor mappings. ``` mysql> select o.id,o.display_name, h.guest_os_name, h.hypervisor_version from guest_os as o, guest_os_hypervisor as h where o.id=h.guest_os_id and h.hypervisor_version='6.0' and h.hypervisor_type='vmware' and o.display_name like '%SUSE%'; +-----+----------------------------------+---------------+--------------------+ | id | display_name | guest_os_name | hypervisor_version | +-----+----------------------------------+---------------+--------------------+ | 96 | SUSE Linux Enterprise 8(32-bit) | suseGuest | 6.0 | | 97 | SUSE Linux Enterprise 8(64-bit) | suse64Guest | 6.0 | | 107 | SUSE Linux Enterprise 9(32-bit) | suseGuest | 6.0 | | 108 | SUSE Linux Enterprise 9(64-bit) | suse64Guest | 6.0 | | 109 | SUSE Linux Enterprise 10(32-bit) | suseGuest | 6.0 | | 110 | SUSE Linux Enterprise 10(64-bit) | suse64Guest | 6.0 | | 202 | Other SUSE Linux(32-bit) | suseGuest | 6.0 | | 203 | Other SUSE Linux(64-bit) | suse64Guest | 6.0 | +-----+----------------------------------+---------------+--------------------+ 8 rows in set (0.00 sec) ``` * pr/1817: CLOUDSTACK-9654 Missing hypervisor mapping of various SUSE Linux guest os versions on VMware 6.0 Signed-off-by: Rohit Yadav > Missing hypervisor mapping of various SUSE Linux guest os versions on VMware 6.0 > -------------------------------------------------------------------------------- > > Key: CLOUDSTACK-9654 > URL: https://issues.apache.org/jira/browse/CLOUDSTACK-9654 > Project: CloudStack > Issue Type: Bug > Security Level: Public(Anyone can view this level - this is the default.) > Components: Management Server > Affects Versions: 4.9.0 > Environment: ACS 4.9 > VMware 5.1 > Reporter: Sateesh Chodapuneedi > Assignee: Sateesh Chodapuneedi > Fix For: 4.9.1.0 > > > Currently many versions of SUSE Linux does not have any hypervisor mapping entry in guest_os_hypervisor table in cloud database for VMware 6.0. Also observed that the guest_os_name field is incorrect for some SUSE Linux variants, which results in deployed instance (with SUSE Linux) set to guest OS type as "Other (64-bit)" on vCenter, which would not represent the guest OS accurately on hypervisor. > The current (4.9) list of SUSE Linux guest os in database looks as below, > {noformat} > mysql> select id,display_name from guest_os where display_name like '%suse%'; > +-----+----------------------------------------------+ > | id | display_name | > +-----+----------------------------------------------+ > | 40 | SUSE Linux Enterprise Server 9 SP4 (32-bit) | > | 41 | SUSE Linux Enterprise Server 10 SP1 (32-bit) | > | 42 | SUSE Linux Enterprise Server 10 SP1 (64-bit) | > | 43 | SUSE Linux Enterprise Server 10 SP2 (32-bit) | > | 44 | SUSE Linux Enterprise Server 10 SP2 (64-bit) | > | 45 | SUSE Linux Enterprise Server 10 SP3 (64-bit) | > | 46 | SUSE Linux Enterprise Server 11 (32-bit) | > | 47 | SUSE Linux Enterprise Server 11 (64-bit) | > | 96 | SUSE Linux Enterprise 8(32-bit) | > | 97 | SUSE Linux Enterprise 8(64-bit) | > | 107 | SUSE Linux Enterprise 9(32-bit) | > | 108 | SUSE Linux Enterprise 9(64-bit) | > | 109 | SUSE Linux Enterprise 10(32-bit) | > | 110 | SUSE Linux Enterprise 10(64-bit) | > | 151 | SUSE Linux Enterprise Server 10 SP3 (32-bit) | > | 152 | SUSE Linux Enterprise Server 10 SP4 (64-bit) | > | 153 | SUSE Linux Enterprise Server 10 SP4 (32-bit) | > | 154 | SUSE Linux Enterprise Server 11 SP1 (64-bit) | > | 155 | SUSE Linux Enterprise Server 11 SP1 (32-bit) | > | 185 | SUSE Linux Enterprise Server 11 SP2 (64-bit) | > | 186 | SUSE Linux Enterprise Server 11 SP2 (32-bit) | > | 187 | SUSE Linux Enterprise Server 11 SP3 (64-bit) | > | 188 | SUSE Linux Enterprise Server 11 SP3 (32-bit) | > | 202 | Other SUSE Linux(32-bit) | > | 203 | Other SUSE Linux(64-bit) | > | 244 | SUSE Linux Enterprise Server 12 (64-bit) | > +-----+----------------------------------------------+ > 26 rows in set (0.00 sec) > {noformat} > The current (4.9) hypervisor mappings for SUSE Linux guest os over VMware 6.0 in database looks as below. We can observe in the below query result, which lists all hypervisor mappings for SUSE Linux guest OS over VMware 6.0, many guest os listed in above query result are missing their mappings for VMware 6.0. Hence the need to add the missing hypervisor mappings. > {noformat} > mysql> select o.id,o.display_name, h.guest_os_name, h.hypervisor_version from guest_os as o, guest_os_hypervisor as h where o.id=h.guest_os_id and h.hypervisor_version='6.0' and h.hypervisor_type='vmware' and o.display_name like '%SUSE%'; > +-----+----------------------------------+---------------+--------------------+ > | id | display_name | guest_os_name | hypervisor_version | > +-----+----------------------------------+---------------+--------------------+ > | 96 | SUSE Linux Enterprise 8(32-bit) | suseGuest | 6.0 | > | 97 | SUSE Linux Enterprise 8(64-bit) | suse64Guest | 6.0 | > | 107 | SUSE Linux Enterprise 9(32-bit) | suseGuest | 6.0 | > | 108 | SUSE Linux Enterprise 9(64-bit) | suse64Guest | 6.0 | > | 109 | SUSE Linux Enterprise 10(32-bit) | suseGuest | 6.0 | > | 110 | SUSE Linux Enterprise 10(64-bit) | suse64Guest | 6.0 | > | 202 | Other SUSE Linux(32-bit) | suseGuest | 6.0 | > | 203 | Other SUSE Linux(64-bit) | suse64Guest | 6.0 | > +-----+----------------------------------+---------------+--------------------+ > 8 rows in set (0.00 sec) > {noformat} -- This message was sent by Atlassian JIRA (v6.3.4#6332)