add to release notes

This commit is contained in:
Daniel Wallace 2018-05-18 09:14:47 -05:00
parent 8a341cdbb9
commit 272cb58899
No known key found for this signature in database
GPG key ID: 5FA5E5544F010D48
2 changed files with 19 additions and 0 deletions

View file

@ -267,6 +267,7 @@ additional-builtins=__opts__,
__proxy__,
__serializers__,
__reg__,
__executors__,
__events__

View file

@ -4,6 +4,24 @@
Salt Release Notes - Codename Fluorine
======================================
New Docker Proxy Minion
-----------------------
Docker containers can now be treated as actual minions without installing salt
in the container, using the new :py:mod:`docker proxy minion <salt.proxy.docker>`.
This proxy minion uses the :py:mod:`docker executor <salt.executors.docker>` to
pass commands to the docker container using :py:func:`docker.call
<salt.modules.dockermod.call>`. Any state module calls are passed through the
corresponding function from the :py:mod:`docker <salt.modules.dockermod>`
module.
.. code-block:: yaml
proxy:
proxytype: docker
name: keen_proskuriakova
Grains Dictionary Passed into Custom Grains
-------------------------------------------