<feed xmlns='http://www.w3.org/2005/Atom'>
<title>vyos-cloud-init.git/cloudinit/DataSourceNoCloud.py, branch crux</title>
<subtitle> (mirror of https://github.com/marekm72/vyos-cloud-init.git)
</subtitle>
<id>https://git.amelek.net/marekm72/vyos-cloud-init.git/atom?h=crux</id>
<link rel='self' href='https://git.amelek.net/marekm72/vyos-cloud-init.git/atom?h=crux'/>
<link rel='alternate' type='text/html' href='https://git.amelek.net/marekm72/vyos-cloud-init.git/'/>
<updated>2012-06-07T19:42:38+00:00</updated>
<entry>
<title>1. Adding some new helper files that split off file inclusion, templating, importing, constant usage.</title>
<updated>2012-06-07T19:42:38+00:00</updated>
<author>
<name>Joshua Harlow</name>
<email>harlowja@yahoo-inc.com</email>
</author>
<published>2012-06-07T19:42:38+00:00</published>
<link rel='alternate' type='text/html' href='https://git.amelek.net/marekm72/vyos-cloud-init.git/commit/?id=8900f9cba622eeaf3810003c5a6ff7522312277b'/>
<id>urn:sha1:8900f9cba622eeaf3810003c5a6ff7522312277b</id>
<content type='text'>
1. Move all datasources to a new sources directory
1. Rename some files to be more consistent with python file/module naming.
</content>
</entry>
<entry>
<title>fix issue found in real test</title>
<updated>2012-04-05T03:10:31+00:00</updated>
<author>
<name>Scott Moser</name>
<email>smoser@ubuntu.com</email>
</author>
<published>2012-04-05T03:10:31+00:00</published>
<link rel='alternate' type='text/html' href='https://git.amelek.net/marekm72/vyos-cloud-init.git/commit/?id=166edf79d06fb94856c7c7401914c94149cecbc6'/>
<id>urn:sha1:166edf79d06fb94856c7c7401914c94149cecbc6</id>
<content type='text'>
</content>
</entry>
<entry>
<title>add reading of 'seedfrom' via DataSourceNoCloud's DataSourceConfig</title>
<updated>2012-04-05T02:05:17+00:00</updated>
<author>
<name>Scott Moser</name>
<email>smoser@ubuntu.com</email>
</author>
<published>2012-04-05T02:05:17+00:00</published>
<link rel='alternate' type='text/html' href='https://git.amelek.net/marekm72/vyos-cloud-init.git/commit/?id=e105bfb7b3bf352244a73fc3a7e08a12a102f477'/>
<id>urn:sha1:e105bfb7b3bf352244a73fc3a7e08a12a102f477</id>
<content type='text'>
What this does is provide an second DataSource that could use the
kernel command line url=.  For example:
  ro root=/dev/vda url=http://example.com/i-abcdefg/

http://example.com/i-abcdefg/ would contain:
datasource:
  NoCloud:
    # default seedfrom is None
    # if found, then it should contain a url with:
    #    &lt;url&gt;/user-data and &lt;url&gt;/meta-data
    # seedfrom: http://my.example.com/i-abcde
    seedfrom: http://example.com/i-abcdefg/

Then, the NoCloudNet DataSource would find that seedfrom config
and consume data at
  http://example.com/i-abcdefg/user-data
and
  http://example.com/i-abcdefg/meta-data
</content>
</entry>
<entry>
<title>DataSourceNoCloud: fix local cloud sources other than from devices</title>
<updated>2012-02-28T23:48:58+00:00</updated>
<author>
<name>Scott Moser</name>
<email>smoser@ubuntu.com</email>
</author>
<published>2012-02-28T23:48:58+00:00</published>
<link rel='alternate' type='text/html' href='https://git.amelek.net/marekm72/vyos-cloud-init.git/commit/?id=f7eba5ca8aaaccd6b88f40c5c6f30715bd185069'/>
<id>urn:sha1:f7eba5ca8aaaccd6b88f40c5c6f30715bd185069</id>
<content type='text'>
The purely local non-device (vfat/iso9660) sources were broken by the
last set of changes here.  This restores them to functional.

If the seed is from a device, then the default behavior is to be 'net' mode.

For seed via cmdline, the user can specify 'ds=nocloud-net' and for
seed via filesystem seed dir, they can just populate the other directory.

To make it easier, when attaching a seed device, the user does not need
to specify 'dsmode' of 'net' in the metadata file.  They still can, but that is
the default.  It seems that that is more likely to be what is desired.

LP: #942695</content>
</entry>
<entry>
<title>support reading network interface config from DataSourceNoCloud</title>
<updated>2012-02-17T17:14:48+00:00</updated>
<author>
<name>Scott Moser</name>
<email>smoser@ubuntu.com</email>
</author>
<published>2012-02-17T17:14:48+00:00</published>
<link rel='alternate' type='text/html' href='https://git.amelek.net/marekm72/vyos-cloud-init.git/commit/?id=02aea2383e0ea020fd6c2e74ffcaad8983820a9d'/>
<id>urn:sha1:02aea2383e0ea020fd6c2e74ffcaad8983820a9d</id>
<content type='text'>
document usage of DataSourceNoCloud from vfat or iso disk.
</content>
</entry>
<entry>
<title>DataSourceNoCloud: allow reading user-data and meta-data from simple files</title>
<updated>2012-02-16T21:52:58+00:00</updated>
<author>
<name>Scott Moser</name>
<email>smoser@ubuntu.com</email>
</author>
<published>2012-02-16T21:52:58+00:00</published>
<link rel='alternate' type='text/html' href='https://git.amelek.net/marekm72/vyos-cloud-init.git/commit/?id=9f171511042d29542d8578957c6692c2c9457583'/>
<id>urn:sha1:9f171511042d29542d8578957c6692c2c9457583</id>
<content type='text'>
This allows you to attach a disk in ISO9660 or vfat filesystem format
labeled 'cidata' with 'user-data' and 'meta-data' on it.

It provides a much easier way to interact with cloud-init in nocloud
than mounting the image or the OVF method.
</content>
</entry>
<entry>
<title>Add HP to Copyright, and Juerg Haefliger Authors.</title>
<updated>2012-01-18T14:07:33+00:00</updated>
<author>
<name>Scott Moser</name>
<email>smoser@ubuntu.com</email>
</author>
<published>2012-01-18T14:07:33+00:00</published>
<link rel='alternate' type='text/html' href='https://git.amelek.net/marekm72/vyos-cloud-init.git/commit/?id=2465470c9133041a3b7f5963c579a0f680390ffb'/>
<id>urn:sha1:2465470c9133041a3b7f5963c579a0f680390ffb</id>
<content type='text'>
This copyright change reflects previous changes that Juerg made for pylint and
pep8 cleanups.

From: Juerg Haefliger &lt;juerg.haefliger@hp.com&gt;
Date: Mon, 16 Jan 2012 10:45:12 +0100
</content>
</entry>
<entry>
<title>[PATCH] PEP8 coding style fixes.</title>
<updated>2012-01-17T19:41:29+00:00</updated>
<author>
<name>Scott Moser</name>
<email>smoser@ubuntu.com</email>
</author>
<published>2012-01-17T19:41:29+00:00</published>
<link rel='alternate' type='text/html' href='https://git.amelek.net/marekm72/vyos-cloud-init.git/commit/?id=15e3241ba725a21604e0f3570e755a91b5edba00'/>
<id>urn:sha1:15e3241ba725a21604e0f3570e755a91b5edba00</id>
<content type='text'>
From: Juerg Haefliger &lt;juerg.haefliger@hp.com&gt;

This pulls in the named patch for LP: #914739 with a few other changes.
</content>
</entry>
<entry>
<title>[PATCH 3/4] Fix pylint conventions C0324 (comma not followed by a space)</title>
<updated>2012-01-17T17:35:45+00:00</updated>
<author>
<name>Scott Moser</name>
<email>smoser@ubuntu.com</email>
</author>
<published>2012-01-17T17:35:45+00:00</published>
<link rel='alternate' type='text/html' href='https://git.amelek.net/marekm72/vyos-cloud-init.git/commit/?id=1a1da7c11e8bbb7e9f4b06a06ee5d6b18fdc1efc'/>
<id>urn:sha1:1a1da7c11e8bbb7e9f4b06a06ee5d6b18fdc1efc</id>
<content type='text'>
From: Juerg Haefliger &lt;juerg.haefliger@hp.com&gt;
</content>
</entry>
<entry>
<title>[PATCH 2/4] Fix pylint conventions C0322 (operator not preceded by a space)</title>
<updated>2012-01-17T17:34:19+00:00</updated>
<author>
<name>Scott Moser</name>
<email>smoser@ubuntu.com</email>
</author>
<published>2012-01-17T17:34:19+00:00</published>
<link rel='alternate' type='text/html' href='https://git.amelek.net/marekm72/vyos-cloud-init.git/commit/?id=c33eedb47b2b22c797051da197fd80e74f1db179'/>
<id>urn:sha1:c33eedb47b2b22c797051da197fd80e74f1db179</id>
<content type='text'>
From: Juerg Haefliger &lt;juerg.haefliger@hp.com&gt;
</content>
</entry>
</feed>
