diff options
author | Julien Castets <castets.j@gmail.com> | 2017-04-25 09:06:13 +0000 |
---|---|---|
committer | Scott Moser <smoser@brickies.net> | 2017-07-17 17:10:18 -0400 |
commit | e80517ae6aea49c9ab3bd622a33fee44014f485f (patch) | |
tree | efadd114eb7bfd655fa307b13d95b5412dc8be63 /tests/unittests/test_datasource/test_common.py | |
parent | be8e84b3639d41202a4e1ce7626b2053498fecdb (diff) | |
download | vyos-cloud-init-e80517ae6aea49c9ab3bd622a33fee44014f485f.tar.gz vyos-cloud-init-e80517ae6aea49c9ab3bd622a33fee44014f485f.zip |
Scaleway: add datasource with user and vendor data for Scaleway.
Here we add and enable by default a datasource for Scaleway cloud.
The datasource quickly exits unless one of three things:
a.) 'Scaleway' found as the system vendor
b.) 'scaleway' found on the kernel command line.
c.) the directory /var/run/scaleway exists (this is currently created
by the scaleway initramfs module).
One interesting bit of this particular datasource is that it requires
the source port of the http request to be < 1024.
Diffstat (limited to 'tests/unittests/test_datasource/test_common.py')
-rw-r--r-- | tests/unittests/test_datasource/test_common.py | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/tests/unittests/test_datasource/test_common.py b/tests/unittests/test_datasource/test_common.py index 2ff1d9df..413e87ac 100644 --- a/tests/unittests/test_datasource/test_common.py +++ b/tests/unittests/test_datasource/test_common.py @@ -19,6 +19,7 @@ from cloudinit.sources import ( DataSourceOpenNebula as OpenNebula, DataSourceOpenStack as OpenStack, DataSourceOVF as OVF, + DataSourceScaleway as Scaleway, DataSourceSmartOS as SmartOS, ) from cloudinit.sources import DataSourceNone as DSNone @@ -48,6 +49,7 @@ DEFAULT_NETWORK = [ NoCloud.DataSourceNoCloudNet, OpenStack.DataSourceOpenStack, OVF.DataSourceOVFNet, + Scaleway.DataSourceScaleway, ] |