<div dir="ltr">Hi Folks ,<div><br></div><div>I have three Node openstack setup installed on my PC ,Earlier I was using the Virt-Manager to create the images from iso and than i would use those Opensuse Images to run my application but now i have tried to convert that image using Glance into qcow2 and even followed the instructions taking the example in the given link :</div><div><a href="http://docs.openstack.org/image-guide/content/centos-image.html">http://docs.openstack.org/image-guide/content/centos-image.html</a><br></div><div>and changed both the grub and fstab for the partitions but i am still getting the issue :<span style="color:rgb(51,51,51);font-family:'Courier New';font-size:9pt;line-height:13.5pt;background-color:rgb(245,245,245)">Waiting for device /dev/vda1 to appear: ..[  
25.642178] Restarting system.</span></div><div><span style="color:rgb(51,51,51);font-family:'Courier New';font-size:9pt;line-height:13.5pt;background-color:rgb(245,245,245)">c</span><span style="font-family:'Courier New';font-size:9pt;line-height:13.5pt;background-color:rgb(245,245,245)"><font color="#000000">an someone guide me in this case for opensuse images .</font></span></div><div><span style="font-family:'Courier New';font-size:9pt;line-height:13.5pt;background-color:rgb(245,245,245)"><font color="#000000"><br></font></span></div><div><span style="font-family:'Courier New';font-size:9pt;line-height:13.5pt;background-color:rgb(245,245,245)"><font color="#000000">Regards ,</font></span></div><div><span style="font-family:'Courier New';font-size:9pt;line-height:13.5pt;background-color:rgb(245,245,245)"><font color="#000000">Sahil Arora</font></span></div><p class="MsoNormal" style="margin-bottom:6.75pt;line-height:13.5pt;background:rgb(245,245,245)"><span style="font-size:9pt;font-family:'Courier New';color:rgb(51,51,51)"></span></p></div><div class="gmail_extra"><br><div class="gmail_quote">On Sun, Sep 20, 2015 at 5:30 PM,  <span dir="ltr"><<a href="mailto:openstack-request@lists.openstack.org" target="_blank">openstack-request@lists.openstack.org</a>></span> wrote:<br><blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex">Send Openstack mailing list submissions to<br>
        <a href="mailto:openstack@lists.openstack.org">openstack@lists.openstack.org</a><br>
<br>
To subscribe or unsubscribe via the World Wide Web, visit<br>
        <a href="http://lists.openstack.org/cgi-bin/mailman/listinfo/openstack" rel="noreferrer" target="_blank">http://lists.openstack.org/cgi-bin/mailman/listinfo/openstack</a><br>
or, via email, send a message with subject or body 'help' to<br>
        <a href="mailto:openstack-request@lists.openstack.org">openstack-request@lists.openstack.org</a><br>
<br>
You can reach the person managing the list at<br>
        <a href="mailto:openstack-owner@lists.openstack.org">openstack-owner@lists.openstack.org</a><br>
<br>
When replying, please edit your Subject line so it is more specific<br>
than "Re: Contents of Openstack digest..."<br>
<br>
<br>
Today's Topics:<br>
<br>
   1. heat nested stack -icehouse, nova-network, centos,<br>
      ResourceGroup (kevin parrikar)<br>
   2. PKI Issue vs UUID (Remo Mattei)<br>
   3. Re: PKI Issue vs UUID (Shinobu Kinjo)<br>
<br>
<br>
----------------------------------------------------------------------<br>
<br>
Message: 1<br>
Date: Sat, 19 Sep 2015 22:05:31 +0530<br>
From: kevin parrikar <<a href="mailto:kevin.parker092@gmail.com">kevin.parker092@gmail.com</a>><br>
To: <a href="mailto:openstack@lists.openstack.org">openstack@lists.openstack.org</a><br>
Subject: [Openstack] heat nested stack -icehouse, nova-network,<br>
        centos, ResourceGroup<br>
Message-ID:<br>
        <CAJLFrOX4LYHbAh8fxbJ6=<a href="mailto:n0XpXCu5abV_WZxYCJcy-sqGLy52A@mail.gmail.com">n0XpXCu5abV_WZxYCJcy-sqGLy52A@mail.gmail.com</a>><br>
Content-Type: text/plain; charset="utf-8"<br>
<br>
Hello All,<br>
                i am trying to create 3 instances,with cinder volume<br>
attached using "OS::Heat::ResourceGroup",but it returns<br>
<br>
"ERROR: Unknown resource Type : cinderattached.yml". Can any one please<br>
help me in this<br>
<br>
<br>
heat_template_version: 2013-05-23<br>
<br>
resources:<br>
  rg:<br>
    type: OS::Heat::ResourceGroup<br>
    properties:<br>
      count: 3<br>
      resource_def: {type: cinderattached.yml}<br>
<br>
<br>
cinderattached.yml<br>
<br>
heat_template_version: 2013-05-23<br>
<br>
parameters:<br>
  key_name:<br>
    type: string<br>
    default: key<br>
  instance_type:<br>
    type: string<br>
    default: m1.small<br>
  image_id:<br>
    type: string<br>
    default: Centos 6.6<br>
#  pvt_network:<br>
#    type: string<br>
#    default: tester<br>
  availability_zone:<br>
    type: string<br>
    default: indexer<br>
  volume_type:<br>
    type: string<br>
    description: ceph or ssd<br>
    default: ssd<br>
  volume_size:<br>
    type: number<br>
    default: 1<br>
<br>
<br>
resources:<br>
  volume:<br>
    type: OS::Cinder::Volume<br>
    properties:<br>
      size: { get_param: volume_size }<br>
      description: Volume for stack<br>
      volume_type: { get_param: volume_type }<br>
<br>
  volume_attachment:<br>
    type: OS::Cinder::VolumeAttachment<br>
    properties:<br>
      volume_id: { get_resource: volume }<br>
      instance_uuid: { get_resource: instance }<br>
<br>
  instance:<br>
    type: OS::Nova::Server<br>
    properties:<br>
      image: { get_param: image_id }<br>
      flavor: { get_param: instance_type }<br>
      key_name: { get_param: key_name }<br>
<br>
Debug Log:<br>
<br>
DEBUG (session) REQ: curl -i -X POST<br>
<a href="http://controller:8004/v1/bef416f4a12841d3a88eb1028a03aec2/stacks" rel="noreferrer" target="_blank">http://controller:8004/v1/bef416f4a12841d3a88eb1028a03aec2/stacks</a> -H<br>
"Accept: application/json" -H "X-Auth-Token:<br>
MIIMlAYJKoZIhvcNAQcCoIIMhTCCDIECAQExCTAHBgUrDgMCGjCCCuoGCSqGSIb3DQEHAaCCCtsEggrXeyJhY2Nlc3MiOiB7InRva2VuIjogeyJpc3N1ZWRfYXQiOiAiMjAxNS0wOS0xOVQxNToyNDozMS45MDIxOTciLCAiZXhwaXJlcyI6ICIyMDE1LTA5LTE5VDE2OjI0OjMxWiIsICJpZCI6ICJwbGFjZWhvbGRlciIsICJ0ZW5hbnQiOiB7ImRlc2NyaXB0aW9uIjogIiIsICJlbmFibGVkIjogdHJ1ZSwgImlkIjogImJlZjQxNmY0YTEyODQxZDNhODhlYjEwMjhhMDNhZWMyIiwgIm5hbWUiOiAidGVzdGVyIn19LCAic2VydmljZUNhdGFsb2ciOiBbeyJlbmRwb2ludHMiOiBbeyJhZG1pblVSTCI6ICJodHRwOi8vY29udHJvbGxlcjo4Nzc0L3YyL2JlZjQxNmY0YTEyODQxZDNhODhlYjEwMjhhMDNhZWMyIiwgInJlZ2lvbiI6ICJyZWdpb25PbmUiLCAiaW50ZXJuYWxVUkwiOiAiaHR0cDovL2NvbnRyb2xsZXI6ODc3NC92Mi9iZWY0MTZmNGExMjg0MWQzYTg4ZWIxMDI4YTAzYWVjMiIsICJpZCI6ICI2NzA1YzE2MjZhNTk0NmFlOTI2Njg4MmM2ZmI5N2M3MiIsICJwdWJsaWNVUkwiOiAiaHR0cDovL2NvbnRyb2xsZXI6ODc3NC92Mi9iZWY0MTZmNGExMjg0MWQzYTg4ZWIxMDI4YTAzYWVjMiJ9XSwgImVuZHBvaW50c19saW5rcyI6IFtdLCAidHlwZSI6ICJjb21wdXRlIiwgIm5hbWUiOiAibm92YSJ9LCB7ImVuZHBvaW50cyI6IFt7ImFkbWluVVJMIjogImh0dHA6Ly9jb250cm9sbGVyOjg3NzYvdjIvYmVmNDE2ZjRhMTI4NDFkM2E4OGViMTAyOGEwM2FlYzIiLCAicmVnaW9uIjogInJlZ2lvbk9uZSIsICJpbnRlcm5hbFVSTCI6ICJodHRwOi8vY29udHJvbGxlcjo4Nzc2L3YyL2JlZjQxNmY0YTEyODQxZDNhODhlYjEwMjhhMDNhZWMyIiwgImlkIjogIjUzNTk5YjljMzM5YTRjODhiZGI0OWE3ODc3OWIyYTdjIiwgInB1YmxpY1VSTCI6ICJodHRwOi8vY29udHJvbGxlcjo4Nzc2L3YyL2JlZjQxNmY0YTEyODQxZDNhODhlYjEwMjhhMDNhZWMyIn1dLCAiZW5kcG9pbnRzX2xpbmtzIjogW10sICJ0eXBlIjogInZvbHVtZXYyIiwgIm5hbWUiOiAiY2luZGVydjIifSwgeyJlbmRwb2ludHMiOiBbeyJhZG1pblVSTCI6ICJodHRwOi8vY29udHJvbGxlcjo5MjkyIiwgInJlZ2lvbiI6ICJyZWdpb25PbmUiLCAiaW50ZXJuYWxVUkwiOiAiaHR0cDovL2NvbnRyb2xsZXI6OTI5MiIsICJpZCI6ICI0YWEzMjQ3ZGNjYWM0ZGU2YjE4ZWUwYjRjOWVmMTE2MSIsICJwdWJsaWNVUkwiOiAiaHR0cDovL2NvbnRyb2xsZXI6OTI5MiJ9XSwgImVuZHBvaW50c19saW5rcyI6IFtdLCAidHlwZSI6ICJpbWFnZSIsICJuYW1lIjogImdsYW5jZSJ9LCB7ImVuZHBvaW50cyI6IFt7ImFkbWluVVJMIjogImh0dHA6Ly9jb250cm9sbGVyOjgwMDAvdjEiLCAicmVnaW9uIjogInJlZ2lvbk9uZSIsICJpbnRlcm5hbFVSTCI6ICJodHRwOi8vY29udHJvbGxlcjo4MDAwL3YxIiwgImlkIjogIjQ4MjEwMTExOTRmYzQ5OWM5MjU0NDMzOTQxOTJmMGFhIiwgInB1YmxpY1VSTCI6ICJodHRwOi8vY29udHJvbGxlcjo4MDAwL3YxIn1dLCAiZW5kcG9pbnRzX2xpbmtzIjogW10sICJ0eXBlIjogImNsb3VkZm9ybWF0aW9uIiwgIm5hbWUiOiAiaGVhdC1jZm4ifSwgeyJlbmRwb2ludHMiOiBbeyJhZG1pblVSTCI6ICJodHRwOi8vY29udHJvbGxlcjo4Nzc2L3YxL2JlZjQxNmY0YTEyODQxZDNhODhlYjEwMjhhMDNhZWMyIiwgInJlZ2lvbiI6ICJyZWdpb25PbmUiLCAiaW50ZXJuYWxVUkwiOiAiaHR0cDovL2NvbnRyb2xsZXI6ODc3Ni92MS9iZWY0MTZmNGExMjg0MWQzYTg4ZWIxMDI4YTAzYWVjMiIsICJpZCI6ICI5N2U5OThkNzBiZDM0MTNlYTc2ZWU2ZjY2NDJmZDMwNSIsICJwdWJsaWNVUkwiOiAiaHR0cDovL2NvbnRyb2xsZXI6ODc3Ni92MS9iZWY0MTZmNGExMjg0MWQzYTg4ZWIxMDI4YTAzYWVjMiJ9XSwgImVuZHBvaW50c19saW5rcyI6IFtdLCAidHlwZSI6ICJ2b2x1bWUiLCAibmFtZSI6ICJjaW5kZXIifSwgeyJlbmRwb2ludHMiOiBbeyJhZG1pblVSTCI6ICJodHRwOi8vY29udHJvbGxlcjo4MDA0L3YxL2JlZjQxNmY0YTEyODQxZDNhODhlYjEwMjhhMDNhZWMyIiwgInJlZ2lvbiI6ICJyZWdpb25PbmUiLCAiaW50ZXJuYWxVUkwiOiAiaHR0cDovL2NvbnRyb2xsZXI6ODAwNC92MS9iZWY0MTZmNGExMjg0MWQzYTg4ZWIxMDI4YTAzYWVjMiIsICJpZCI6ICI0YTNkMWMyMDU5Y2I0NzA2YmFiZTE5NmM5NDFkM2IyOSIsICJwdWJsaWNVUkwiOiAiaHR0cDovL2NvbnRyb2xsZXI6ODAwNC92MS9iZWY0MTZmNGExMjg0MWQzYTg4ZWIxMDI4YTAzYWVjMiJ9XSwgImVuZHBvaW50c19saW5rcyI6IFtdLCAidHlwZSI6ICJvcmNoZXN0cmF0aW9uIiwgIm5hbWUiOiAiaGVhdCJ9LCB7ImVuZHBvaW50cyI6IFt7ImFkbWluVVJMIjogImh0dHA6Ly9jb250cm9sbGVyOjM1MzU3L3YyLjAiLCAicmVnaW9uIjogInJlZ2lvbk9uZSIsICJpbnRlcm5hbFVSTCI6ICJodHRwOi8vY29udHJvbGxlcjo1MDAwL3YyLjAiLCAiaWQiOiAiNjg5ZTAyYWI1ZmI2NGY2ZGE4ZTMwOTI1NGZiM2Q1ZTciLCAicHVibGljVVJMIjogImh0dHA6Ly9jb250cm9sbGVyOjUwMDAvdjIuMCJ9XSwgImVuZHBvaW50c19saW5rcyI6IFtdLCAidHlwZSI6ICJpZGVudGl0eSIsICJuYW1lIjogImtleXN0b25lIn1dLCAidXNlciI6IHsidXNlcm5hbWUiOiAidGVzdGVyIiwgInJvbGVzX2xpbmtzIjogW10sICJpZCI6ICI0NWZkNDhjMTA5YWE0NTI4YmRkYWRmZTA1OGZlNjliNyIsICJyb2xlcyI6IFt7Im5hbWUiOiAiX21lbWJlcl8ifV0sICJuYW1lIjogInRlc3RlciJ9LCAibWV0YWRhdGEiOiB7ImlzX2FkbWluIjogMCwgInJvbGVzIjogWyI5ZmUyZmY5ZWU0Mzg0YjE4OTRhOTA4NzhkM2U5MmJhYiJdfX19MYIBgTCCAX0CAQEwXDBXMQswCQYDVQQGEwJVUzEOMAwGA1UECAwFVW5zZXQxDjAMBgNVBAcMBVVuc2V0MQ4wDAYDVQQKDAVVbnNldDEYMBYGA1UEAwwPd3d3LmV4YW1wbGUuY29tAgEBMAcGBSsOAwIaMA0GCSqGSIb3DQEBAQUABIIBAJ0eAnb1-Y+OaHMAnWXJAu7zu--UdK5fek43Hku7zTYUBfS-yn2fiiQtcwp0TxYzg48q+QhIA3plTO1kJnbFWQSGgeNvyyGLLwXbKmKgsi9POkZKZ8zwVvFPnlwZX9gnrjTgbpFXisk66fC53uEkaHPHjO8YVsy8p3DILlLR-enCkpU+VglKspOht5lm0mzNnY5bbXDHc6bofa0WO0W3ScNg+o+w9rqxTXwT6TZ9ux7xN7i4dX01QIbm1KNU041nRA6BErGPZGrCwQFsnPkYxDnWrW7SAaETHu1D5gOjYgtZ4CBUDR4vop7UaKDYpyqGOEDGzo5KEbBfuZtJV+ZqnF8="<br>
-H "X-Auth-Key: tester" -H "X-Auth-User: tester" -H "User-Agent:<br>
python-heatclient" -H "Content-Type: application/json" -H "X-Auth-Url:<br>
<a href="http://10.99.10.124:5000/v2.0" rel="noreferrer" target="_blank">http://10.99.10.124:5000/v2.0</a>" -d '{"files": {}, "disable_rollback": true,<br>
"parameters": {}, "stack_name": "multins", "environment": {}, "template":<br>
{"heat_template_version": "2013-05-23", "resources": {"rg": {"type":<br>
"OS::Heat::ResourceGroup", "properties": {"count": 3, "resource_def":<br>
{"type": "cinder-attached.yml"}}}}}}'<br>
DEBUG (session) RESP: [400] {'date': 'Sat, 19 Sep 2015 15:24:32 GMT',<br>
'content-length': '274', 'content-type': 'application/json; charset=UTF-8'}<br>
RESP BODY: {"explanation": "The server could not comply with the request<br>
since it is either malformed or otherwise incorrect.", "code": 400,<br>
"error": {"message": "Unknown resource Type : cinder-attached.yml",<br>
"traceback": null, "type": "StackValidationFailed"}, "title": "Bad Request"}<br>
-------------- next part --------------<br>
An HTML attachment was scrubbed...<br>
URL: <<a href="http://lists.openstack.org/pipermail/openstack/attachments/20150919/2b4a5405/attachment-0001.html" rel="noreferrer" target="_blank">http://lists.openstack.org/pipermail/openstack/attachments/20150919/2b4a5405/attachment-0001.html</a>><br>
<br>
------------------------------<br>
<br>
Message: 2<br>
Date: Sat, 19 Sep 2015 12:52:58 -0700<br>
From: Remo Mattei <Remo@Italy1.com><br>
To: openstack <<a href="mailto:openstack@lists.openstack.org">openstack@lists.openstack.org</a>><br>
Subject: [Openstack] PKI Issue vs UUID<br>
Message-ID: <3DEF23C6-FA4E-4D83-A3FE-7D19F164FF41@Italy1.com><br>
Content-Type: text/plain; charset=us-ascii<br>
<br>
Hello all,<br>
<br>
I have notice that when I do the RDO installation of Kilo with the UUID and login with the admin account, I can select which project to spin up new instances and also which project to select from the pull down menu. If I do the same installation using packstack and change the keystone from UUID to PKI, I cannot select any of those options.<br>
<br>
Has anyone seen this issue? I notice that there was a bug going on while back but I thought that would have been fixed by now.<br>
<br>
Thanks for any tips on how to go by this.<br>
<br>
Remo<br>
<br>
<br>
------------------------------<br>
<br>
Message: 3<br>
Date: Sat, 19 Sep 2015 20:36:52 -0400 (EDT)<br>
From: Shinobu Kinjo <<a href="mailto:skinjo@redhat.com">skinjo@redhat.com</a>><br>
To: Remo Mattei <Remo@Italy1.com><br>
Cc: openstack <<a href="mailto:openstack@lists.openstack.org">openstack@lists.openstack.org</a>><br>
Subject: Re: [Openstack] PKI Issue vs UUID<br>
Message-ID:<br>
        <<a href="mailto:1043226213.18946744.1442709412644.JavaMail.zimbra@redhat.com">1043226213.18946744.1442709412644.JavaMail.zimbra@redhat.com</a>><br>
Content-Type: text/plain; charset=utf-8<br>
<br>
Probably it's better for you to attach logs if you could find out.<br>
<br>
Shinobu<br>
<br>
----- Original Message -----<br>
From: "Remo Mattei" <Remo@Italy1.com><br>
To: "openstack" <<a href="mailto:openstack@lists.openstack.org">openstack@lists.openstack.org</a>><br>
Sent: Sunday, September 20, 2015 4:52:58 AM<br>
Subject: [Openstack] PKI Issue vs UUID<br>
<br>
Hello all,<br>
<br>
I have notice that when I do the RDO installation of Kilo with the UUID and login with the admin account, I can select which project to spin up new instances and also which project to select from the pull down menu. If I do the same installation using packstack and change the keystone from UUID to PKI, I cannot select any of those options.<br>
<br>
Has anyone seen this issue? I notice that there was a bug going on while back but I thought that would have been fixed by now.<br>
<br>
Thanks for any tips on how to go by this.<br>
<br>
Remo<br>
_______________________________________________<br>
Mailing list: <a href="http://lists.openstack.org/cgi-bin/mailman/listinfo/openstack" rel="noreferrer" target="_blank">http://lists.openstack.org/cgi-bin/mailman/listinfo/openstack</a><br>
Post to     : <a href="mailto:openstack@lists.openstack.org">openstack@lists.openstack.org</a><br>
Unsubscribe : <a href="http://lists.openstack.org/cgi-bin/mailman/listinfo/openstack" rel="noreferrer" target="_blank">http://lists.openstack.org/cgi-bin/mailman/listinfo/openstack</a><br>
<br>
<br>
<br>
------------------------------<br>
<br>
_______________________________________________<br>
Openstack mailing list<br>
<a href="mailto:openstack@lists.openstack.org">openstack@lists.openstack.org</a><br>
<a href="http://lists.openstack.org/cgi-bin/mailman/listinfo/openstack" rel="noreferrer" target="_blank">http://lists.openstack.org/cgi-bin/mailman/listinfo/openstack</a><br>
<br>
<br>
End of Openstack Digest, Vol 27, Issue 20<br>
*****************************************<br>
</blockquote></div><br></div>