diff options
author | Scott Moser <smoser@ubuntu.com> | 2014-07-07 16:03:32 -0400 |
---|---|---|
committer | Scott Moser <smoser@ubuntu.com> | 2014-07-07 16:03:32 -0400 |
commit | 8546c80568059601362f41261993479b074332a3 (patch) | |
tree | e431e1a6bc06b5f26aa98cff7c99767ef2301528 /TODO.rst | |
parent | 9a61ab153ab9d68fb796650666d4ad6729926685 (diff) | |
parent | 5d88d17e850a42c2c2b241d7fd2d840b1c3213fb (diff) | |
download | vyos-cloud-init-8546c80568059601362f41261993479b074332a3.tar.gz vyos-cloud-init-8546c80568059601362f41261993479b074332a3.zip |
move TODO to TODO.rst
Diffstat (limited to 'TODO.rst')
-rw-r--r-- | TODO.rst | 43 |
1 files changed, 43 insertions, 0 deletions
diff --git a/TODO.rst b/TODO.rst new file mode 100644 index 00000000..7d126864 --- /dev/null +++ b/TODO.rst @@ -0,0 +1,43 @@ +============================================== +Things that cloud-init may do (better) someday +============================================== + +- Consider making ``failsafe`` ``DataSource`` + - sets the user password, writing it to console + +- Consider a ``previous`` ``DataSource``, if no other data source is + found, fall back to the ``previous`` one that worked. +- Rewrite ``cloud-init-query`` (currently not implemented) +- Possibly have a ``DataSource`` expose explicit fields: + + - instance-id + - hostname + - mirror + - release + - ssh public keys + +- Remove the conversion of the ubuntu network interface format conversion + to a RH/fedora format and replace it with a top level format that uses + the netcf libraries format instead (which itself knows how to translate + into the specific formats). See for example `netcf`_ which seems to be + an active project that has this capability. +- Replace the ``apt*`` modules with variants that now use the distro classes + to perform distro independent packaging commands (wherever possible). +- Replace some the LOG.debug calls with a LOG.info where appropriate instead + of how right now there is really only 2 levels (``WARN`` and ``DEBUG``) +- Remove the ``cc_`` prefix for config modules, either have them fully + specified (ie ``cloudinit.config.resizefs``) or by default only look in + the ``cloudinit.config`` namespace for these modules (or have a combination + of the above), this avoids having to understand where your modules are + coming from (which can be altered by the current python inclusion path) +- Instead of just warning when a module is being ran on a ``unknown`` + distribution perhaps we should not run that module in that case? Or we might + want to start reworking those modules so they will run on all + distributions? Or if that is not the case, then maybe we want to allow + fully specified python paths for modules and start encouraging + packages of ``ubuntu`` modules, packages of ``rhel`` specific modules that + people can add instead of having them all under the cloud-init ``root`` + tree? This might encourage more development of other modules instead of + having to go edit the cloud-init code to accomplish this. + +.. _netcf: https://fedorahosted.org/netcf/ |