[openstack-dev] [Heat] creating a stack with a config_drive

2015-08-07 Thread Maish Saidel-Keesing
I have been looking for a working example to create Heat stack with a config_drive attached. I know it is possible to deploy a nova instance with the CLI [1] I see that OS::Nova::Server has a config_drive property that is a Boolean value [2] What I cannot find is how this can be used. Where

Re: [openstack-dev] [Heat] creating a stack with a config_drive

2015-08-07 Thread Randall Burt
] [Heat] creating a stack with a config_drive I have been looking for a working example to create Heat stack with a config_drive attached. I know it is possible to deploy a nova instance with the CLI [1] I see that OS::Nova::Server has a config_drive property that is a Boolean value [2] What I cannot

Re: [openstack-dev] [Heat] creating a stack with a config_drive

2015-08-07 Thread Maish Saidel-Keesing
? Original message From: Maish Saidel-Keesing Date:08/07/2015 8:08 AM (GMT-06:00) To: OpenStack Development Mailing List (not for usage questions) Subject: [openstack-dev] [Heat] creating a stack with a config_drive I have been looking for a working example to create Heat stack

Re: [openstack-dev] [Heat] creating a stack with a config_drive

2015-08-07 Thread Randall Burt
...@maishsk.com, OpenStack Development Mailing List (not for usage questions) Subject: Re: [openstack-dev] [Heat] creating a stack with a config_drive On 08/07/15 16:22, Randall Burt wrote: config_drive: true just tells the instance to mount the drive. You pass data via the user_data property. Thanks Randall