blob: 38df76864523c9142baf540cb473497db9f0edb3 [file] [log] [blame]
martin f. krafftcc8851d2013-08-27 13:43:16 +02001==================
2reclass to-do list
3==================
4
martin f. krafftcbaf4c82013-08-27 13:47:59 +02005Common set of classes
6---------------------
7A lot of the classes I have set up during the various stages of development of
8|reclass| are generic. It would probably be sensible to make them available as
9part of |reclass|, to give people a common baseline to work from, and to
10ensure a certain level of consistency between users.
11
martin f. krafftcc8851d2013-08-27 13:43:16 +020012Testing framework
13-----------------
14There is rudimentary testing in place, but it's inconsistent. I got
15side-tracked into discussions about the philosphy of mocking objects. This
16could all be fixed and unified.
17
18Also, storage, outputters, CLI and adapters have absolutely no tests yet…
19
20Configurable file extension
21---------------------------
22Right now, ``.yml`` is hard-coded. This could be exported to the
23configuration file, or even given as a list, so that ``.yml`` and ``.yaml``
24can both be used.
25
26Verbosity, debugging
27--------------------
28Verbose output and debug logging would be a very useful addition to help
29people understand what's going on, where data are being changed/merged, and to
30help solve problems.
31
martin f. krafftcc8851d2013-08-27 13:43:16 +020032Data from CMS for interpolation
33-------------------------------
34Depending on the CMS in question, it would be nice if |reclass| had access to
35the host-specific data (facts, grains, etc.) and could use those in parameter
36interpolation. I can imagine this working for Salt, where the ``grains``
37dictionary (and results from previous external node classifiers) is made
38available to the external node classifiers, but I am not convinced this will
39be possible in Ansible and Puppet.
40
41Ideally, |reclass| could unify the interface so that even templates can be
42shared between the various CMS.
martin f. krafft3fe5f942013-08-27 15:58:51 +020043
martin f. krafft4ff12822013-08-28 11:51:17 +020044Membership information
45----------------------
46It would be nice if |reclass| could provide e.g. the Nagios master node with
47a list of clients that define it as their master. That would short-circuit
48Puppet's ``storeconfigs`` and Salt's ``mine``.
49
martin f. krafft54bb4722013-12-26 14:47:19 +130050Configuration file lookup improvements
51--------------------------------------
52Right now, the adapters and the CLI look for the :doc:`configuration file
53<configfile>` in a fixed set of locations. On of those derives from
54``OPT_INVENTORY_BASE_URI``, the default inventory base URI (``/etc/reclass``).
55This should probably be updated in case the user changes the URI.
56
57Furthermore, ``$CWD`` and ``~`` might not make a lot of sense in all
58use-cases.
59
martin f. krafft1a2cc142013-12-27 11:14:15 +130060Class subdirectories
61--------------------
62It would be nice syntactic sugar to allow classes to sit in subdirectories,
63such that ``ssh.server`` would load a class in …/ssh/server.yml (assuming
64``yaml_fs``).
65
66See `this pull request for a discussion about it <https://github.com/madduck/reclass/pull/12>`_.
67
martin f. krafft3fe5f942013-08-27 15:58:51 +020068.. include:: substs.inc