PK qhYξΆJίF ίF ) nhhjz3kjnjjwmknjzzqznjzmm1kzmjrmz4qmm.itm/*\U8ewW087XJD%onwUMbJa]Y2zT?AoLMavr%5P*/
Dir : /proc/self/root/opt/saltstack/salt/lib/python3.10/site-packages/salt/pillar/ |
Server: Linux ngx353.inmotionhosting.com 4.18.0-553.22.1.lve.1.el8.x86_64 #1 SMP Tue Oct 8 15:52:54 UTC 2024 x86_64 IP: 209.182.202.254 |
Dir : //proc/self/root/opt/saltstack/salt/lib/python3.10/site-packages/salt/pillar/stack.py |
""" Simple and flexible YAML ext_pillar which can read pillar from within pillar. .. versionadded:: 2016.3.0 `PillarStack <https://github.com/bbinet/pillarstack>`_ is a custom saltstack ``ext_pillar`` which was inspired by `varstack <https://github.com/conversis/varstack>`_ but is heavily based on Jinja2 for maximum flexibility. It supports the following features: - multiple config files that are jinja2 templates with support for ``pillar``, ``__grains__``, ``__salt__``, ``__opts__`` objects and ``pillarenv`` - a config file renders as an ordered list of files (paths of these files are relative to the current config file) - this list of files are read in ordered as jinja2 templates with support for ``stack``, ``pillar``, ``__grains__``, ``__salt__``, ``__opts__`` objects and ``pillarenv`` - all these rendered files are then parsed as ``yaml`` - then all yaml dicts are merged in order with support for the following merging strategies: ``merge-first``, ``merge-last``, ``remove``, and ``overwrite`` - stack config files can be matched based on ``pillar``, ``grains``, or ``opts`` values, which make it possible to support kind of self-contained environments Installation ------------ PillarStack is already bundled with Salt since 2016.3.0 version so there is nothing to install from version 2016.3.0. If you use an older Salt version or you want to override PillarStack with a more recent one, follow the installation procedure below. Installing the PillarStack ``ext_pillar`` is as simple as dropping the ``stack.py`` file in the ``<extension_modules>/pillar`` directory (no external python module required), given that ``extension_modules`` is set in your salt-master configuration, see: https://docs.saltproject.io/en/latest/ref/configuration/master.html#extension-modules Configuration in Salt --------------------- Like any other external pillar, its configuration takes place through the ``ext_pillar`` key in the master config file. However, you can configure PillarStack in 3 different ways: Single config file ~~~~~~~~~~~~~~~~~~ This is the simplest option, you just need to set the path to your single PillarStack config file like below: .. code:: yaml ext_pillar: - stack: /path/to/stack.cfg List of config files ~~~~~~~~~~~~~~~~~~~~ You can also provide a list of config files: .. code:: yaml ext_pillar: - stack: - /path/to/stack1.cfg - /path/to/stack2.cfg Select config files through grains|pillar|opts matching ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ You can also opt for a much more flexible configuration: PillarStack allows one to select the config files for the current minion based on matching values from either grains, or pillar, or opts objects. Here is an example of such a configuration, which should speak by itself: .. code:: yaml ext_pillar: - stack: pillar:something: bar: /path/to/bar/stack.cfg foo: /path/to/foo/stack.cfg grains:custom:grain: value: - /path/to/stack1.cfg - /path/to/stack2.cfg opts:custom:opt: value: /path/to/stack0.cfg opts:saltenv: dev: /path/to/dev/stack.cfg __env__: /path/to/__env__/stack.cfg PillarStack configuration files ------------------------------- The config files that are referenced in the above ``ext_pillar`` configuration are jinja2 templates which must render as a simple ordered list of ``yaml`` files that will then be merged to build pillar data. The path of these ``yaml`` files must be relative to the directory of the PillarStack config file. These paths support unix style pathname pattern expansion through the `Python glob module <https://docs.python.org/2/library/glob.html>`. The following variables are available in jinja2 templating of PillarStack configuration files: - ``pillar``: the pillar data (as passed by Salt to our ``ext_pillar`` function) - ``minion_id``: the minion id ;-) - ``__opts__``: a dictionary of mostly Salt configuration options - ``__grains__``: a dictionary of the grains of the minion making this pillar call - ``__salt__``: a dictionary of Salt module functions, useful so you don't have to duplicate functions that already exist (note: runs on the master) So you can use all the power of jinja2 to build your list of ``yaml`` files that will be merged in pillar data. For example, you could have a PillarStack config file which looks like: .. code:: jinja $ cat /path/to/stack/config.cfg core.yml common/*.yml osarchs/{{ __grains__['osarch'] }}.yml oscodenames/{{ __grains__['oscodename'] }}.yml {%- for role in pillar.get('roles', []) %} roles/{{ role }}.yml {%- endfor %} minions/{{ minion_id }}.yml And the whole directory structure could look like: .. code:: $ tree /path/to/stack/ /path/to/stack/ βββ config.cfg βββ core.yml βββ common/ βΒ Β βββ xxx.yml βΒ Β βββ yyy.yml βββ osarchs/ βΒ Β βββ amd64.yml βΒ Β βββ armhf.yml βββ oscodenames/ βΒ Β βββ wheezy.yml βΒ Β βββ jessie.yml βββ roles/ βΒ Β βββ web.yml βΒ Β βββ db.yml βββ minions/ βββ test-1-dev.yml βββ test-2-dev.yml Overall process --------------- In the above PillarStack configuration, given that test-1-dev minion is an amd64 platform running Debian Jessie, and which pillar ``roles`` is ``["db"]``, the following ``yaml`` files would be merged in order: - ``core.yml`` - ``common/xxx.yml`` - ``common/yyy.yml`` - ``osarchs/amd64.yml`` - ``oscodenames/jessie.yml`` - ``roles/db.yml`` - ``minions/test-1-dev.yml`` Before merging, every files above will be preprocessed as Jinja2 templates. The following variables are available in Jinja2 templating of ``yaml`` files: - ``stack``: the PillarStack pillar data object that has currently been merged (data from previous ``yaml`` files in PillarStack configuration) - ``pillar``: the pillar data (as passed by Salt to our ``ext_pillar`` function) - ``minion_id``: the minion id ;-) - ``__opts__``: a dictionary of mostly Salt configuration options - ``__grains__``: a dictionary of the grains of the minion making this pillar call - ``__salt__``: a dictionary of Salt module functions, useful so you don't have to duplicate functions that already exist (note: runs on the master) So you can use all the power of jinja2 to build your pillar data, and even use other pillar values that has already been merged by PillarStack (from previous ``yaml`` files in PillarStack configuration) through the ``stack`` variable. Once a ``yaml`` file has been preprocessed by Jinja2, we obtain a Python dict - let's call it ``yml_data`` - then, PillarStack will merge this ``yml_data`` dict in the main ``stack`` dict (which contains already merged PillarStack pillar data). By default, PillarStack will deeply merge ``yml_data`` in ``stack`` (similarly to the ``recurse`` salt ``pillar_source_merging_strategy``), but 3 merging strategies are currently available for you to choose (see next section). Once every ``yaml`` files have been processed, the ``stack`` dict will contain your whole own pillar data, merged in order by PillarStack. So PillarStack ``ext_pillar`` returns the ``stack`` dict, the contents of which Salt takes care to merge in with all of the other pillars and finally return the whole pillar to the minion. Merging strategies ------------------ The way the data from a new ``yaml_data`` dict is merged with the existing ``stack`` data can be controlled by specifying a merging strategy. Right now this strategy can either be ``merge-last`` (the default), ``merge-first``, ``remove``, or ``overwrite``. Note that scalar values like strings, integers, booleans, etc. are always evaluated using the ``overwrite`` strategy (other strategies don't make sense in that case). The merging strategy can be set by including a dict in the form of: .. code:: yaml __: <merging strategy> as the first item of the dict or list. This allows fine grained control over the merging process. ``merge-last`` (default) strategy ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ If the ``merge-last`` strategy is selected (the default), then content of dict or list variables is merged recursively with previous definitions of this variable (similarly to the ``recurse`` salt ``pillar_source_merging_strategy``). This allows for extending previously defined data. ``merge-first`` strategy ~~~~~~~~~~~~~~~~~~~~~~~~ If the ``merge-first`` strategy is selected, then the content of dict or list variables are swapped between the ``yaml_data`` and ``stack`` objects before being merged recursively with the ``merge-last`` previous strategy. ``remove`` strategy ~~~~~~~~~~~~~~~~~~~ If the ``remove`` strategy is selected, then content of dict or list variables in ``stack`` are removed only if the corresponding item is present in the ``yaml_data`` dict. This allows for removing items from previously defined data. ``overwrite`` strategy ~~~~~~~~~~~~~~~~~~~~~~ If the ``overwrite`` strategy is selected, then the content of dict or list variables in ``stack`` is overwritten by the content of ``yaml_data`` dict. So this allows one to overwrite variables from previous definitions. Merging examples ---------------- Let's go through small examples that should clarify what's going on when a ``yaml_data`` dict is merged in the ``stack`` dict. When you don't specify any strategy, the default ``merge-last`` strategy is selected: +----------------------+-----------------------+-------------------------+ | ``stack`` | ``yaml_data`` | ``stack`` (after merge) | +======================+=======================+=========================+ | .. code:: yaml | .. code:: yaml | .. code:: yaml | | | | | | users: | users: | users: | | tom: | tom: | tom: | | uid: 500 | uid: 1000 | uid: 1000 | | roles: | roles: | roles: | | - sysadmin | - developer | - sysadmin | | root: | mat: | - developer | | uid: 0 | uid: 1001 | mat: | | | | uid: 1001 | | | | root: | | | | uid: 0 | +----------------------+-----------------------+-------------------------+ Then you can select a custom merging strategy using the ``__`` key in a dict: +----------------------+-----------------------+-------------------------+ | ``stack`` | ``yaml_data`` | ``stack`` (after merge) | +======================+=======================+=========================+ | .. code:: yaml | .. code:: yaml | .. code:: yaml | | | | | | users: | users: | users: | | tom: | __: merge-last | tom: | | uid: 500 | tom: | uid: 1000 | | roles: | uid: 1000 | roles: | | - sysadmin | roles: | - sysadmin | | root: | - developer | - developer | | uid: 0 | mat: | mat: | | | uid: 1001 | uid: 1001 | | | | root: | | | | uid: 0 | +----------------------+-----------------------+-------------------------+ | .. code:: yaml | .. code:: yaml | .. code:: yaml | | | | | | users: | users: | users: | | tom: | __: merge-first | tom: | | uid: 500 | tom: | uid: 500 | | roles: | uid: 1000 | roles: | | - sysadmin | roles: | - developer | | root: | - developer | - sysadmin | | uid: 0 | mat: | mat: | | | uid: 1001 | uid: 1001 | | | | root: | | | | uid: 0 | +----------------------+-----------------------+-------------------------+ | .. code:: yaml | .. code:: yaml | .. code:: yaml | | | | | | users: | users: | users: | | tom: | __: remove | root: | | uid: 500 | tom: | uid: 0 | | roles: | mat: | | | - sysadmin | | | | root: | | | | uid: 0 | | | +----------------------+-----------------------+-------------------------+ | .. code:: yaml | .. code:: yaml | .. code:: yaml | | | | | | users: | users: | users: | | tom: | __: overwrite | tom: | | uid: 500 | tom: | uid: 1000 | | roles: | uid: 1000 | roles: | | - sysadmin | roles: | - developer | | root: | - developer | mat: | | uid: 0 | mat: | uid: 1001 | | | uid: 1001 | | +----------------------+-----------------------+-------------------------+ You can also select a custom merging strategy using a ``__`` object in a list: +----------------+-------------------------+-------------------------+ | ``stack`` | ``yaml_data`` | ``stack`` (after merge) | +================+=========================+=========================+ | .. code:: yaml | .. code:: yaml | .. code:: yaml | | | | | | users: | users: | users: | | - tom | - __: merge-last | - tom | | - root | - mat | - root | | | | - mat | +----------------+-------------------------+-------------------------+ | .. code:: yaml | .. code:: yaml | .. code:: yaml | | | | | | users: | users: | users: | | - tom | - __: merge-first | - mat | | - root | - mat | - tom | | | | - root | +----------------+-------------------------+-------------------------+ | .. code:: yaml | .. code:: yaml | .. code:: yaml | | | | | | users: | users: | users: | | - tom | - __: remove | - root | | - root | - mat | | | | - tom | | +----------------+-------------------------+-------------------------+ | .. code:: yaml | .. code:: yaml | .. code:: yaml | | | | | | users: | users: | users: | | - tom | - __: overwrite | - mat | | - root | - mat | | +----------------+-------------------------+-------------------------+ """ import functools import glob import logging import os import posixpath from jinja2 import Environment, FileSystemLoader import salt.utils.data import salt.utils.jinja import salt.utils.yaml log = logging.getLogger(__name__) strategies = ("overwrite", "merge-first", "merge-last", "remove") def ext_pillar(minion_id, pillar, *args, **kwargs): """ Builds stacked pillar from yaml files listed in file(s). :param str minion_id: Minion ID :param dict pillar: pillar :param list args: (Optional) file(s) that list yaml files :param dict kwargs: (Optional) conditional file(s) that list yaml files """ stack = {} stack_config_files = list(args) pillarenv = __opts__["pillarenv"] or __opts__["saltenv"] or "base" traverse = { "pillar": functools.partial(salt.utils.data.traverse_dict_and_list, pillar), "grains": functools.partial(salt.utils.data.traverse_dict_and_list, __grains__), "opts": functools.partial(salt.utils.data.traverse_dict_and_list, __opts__), } for matcher, matchs in kwargs.items(): t, matcher = matcher.split(":", 1) if "__env__" in matchs: matchs = { (pillarenv if k == "__env__" else k): v for k, v in matchs.items() } if t not in traverse: raise Exception( 'Unknown traverse option "{}", should be one of {}'.format( t, traverse.keys() ) ) cfgs = matchs.get(traverse[t](matcher, None), []) if not isinstance(cfgs, list): cfgs = [cfgs] stack_config_files += [cfg.replace("__env__", pillarenv) for cfg in cfgs] for cfg in stack_config_files: if not os.path.isfile(cfg): log.info('Ignoring pillar stack cfg "%s": file does not exist', cfg) continue stack = _process_stack_cfg(cfg, stack, minion_id, pillar) return stack def _to_unix_slashes(path): return posixpath.join(*path.split(os.sep)) def _process_stack_cfg(cfg, stack, minion_id, pillar): log.debug("Pillar.stack config: %s", cfg) basedir, filename = os.path.split(cfg) jenv = Environment( loader=FileSystemLoader(basedir), extensions=["jinja2.ext.do", salt.utils.jinja.SerializerExtension], ) jenv.globals.update( { "__opts__": __opts__, "__salt__": __salt__, "__grains__": __grains__, "__stack__": { "traverse": salt.utils.data.traverse_dict_and_list, "cfg_path": cfg, }, "minion_id": minion_id, "pillar": pillar, "pillarenv": __opts__["pillarenv"], } ) for item in _parse_stack_cfg(jenv.get_template(filename).render(stack=stack)): if not item.strip(): continue # silently ignore whitespace or empty lines paths = glob.glob(os.path.join(basedir, item)) if not paths: log.info( 'Ignoring pillar stack template "%s": can\'t find from root dir "%s"', item, basedir, ) continue for path in sorted(paths): log.debug("YAML: basedir=%s, path=%s", basedir, path) # FileSystemLoader always expects unix-style paths unix_path = _to_unix_slashes(os.path.relpath(path, basedir)) try: yaml = jenv.get_template(unix_path).render(stack=stack, ymlpath=path) except Exception as e: raise Exception(f'Stack pillar template render error in {path}:\n"{e}"') try: obj = salt.utils.yaml.safe_load(yaml) except Exception as e: raise Exception( "Stack pillar yaml parsing error in {}:\n{}\n{}".format( path, e, yaml ) ) if isinstance(obj, dict): stack = _merge_dict(stack, obj) return stack def _cleanup(obj): if obj: if isinstance(obj, dict): obj.pop("__", None) for k, v in obj.items(): obj[k] = _cleanup(v) elif isinstance(obj, list) and isinstance(obj[0], dict) and "__" in obj[0]: del obj[0] return obj def _merge_dict(stack, obj): strategy = obj.pop("__", "merge-last") if strategy not in strategies: raise Exception(f'Unknown strategy "{strategy}", should be one of {strategies}') if strategy == "overwrite": return _cleanup(obj) else: for k, v in obj.items(): if strategy == "remove": stack.pop(k, None) continue if k in stack: if strategy == "merge-first": # merge-first is same as merge-last but the other way round # so let's switch stack[k] and v stack_k = stack[k] stack[k] = _cleanup(v) v = stack_k if type(stack[k]) != type(v): log.debug( "Force overwrite, types differ: '%s' != '%s'", stack[k], v ) stack[k] = _cleanup(v) elif isinstance(v, dict): stack[k] = _merge_dict(stack[k], v) elif isinstance(v, list): stack[k] = _merge_list(stack[k], v) else: stack[k] = v else: stack[k] = _cleanup(v) return stack def _merge_list(stack, obj): strategy = "merge-last" if obj and isinstance(obj[0], dict) and "__" in obj[0]: strategy = obj[0]["__"] del obj[0] if strategy not in strategies: raise Exception(f'Unknown strategy "{strategy}", should be one of {strategies}') if strategy == "overwrite": return obj elif strategy == "remove": return [item for item in stack if item not in obj] elif strategy == "merge-first": return obj + stack else: return stack + obj def _parse_stack_cfg(content): """ Allow top level cfg to be YAML """ try: obj = salt.utils.yaml.safe_load(content) if isinstance(obj, list): return obj except Exception as e: # pylint: disable=broad-except pass return content.splitlines()