mirror of
https://github.com/saltstack/salt.git
synced 2025-04-16 09:40:20 +00:00
add to release notes
This commit is contained in:
parent
8a341cdbb9
commit
272cb58899
2 changed files with 19 additions and 0 deletions
|
@ -267,6 +267,7 @@ additional-builtins=__opts__,
|
||||||
__proxy__,
|
__proxy__,
|
||||||
__serializers__,
|
__serializers__,
|
||||||
__reg__,
|
__reg__,
|
||||||
|
__executors__,
|
||||||
__events__
|
__events__
|
||||||
|
|
||||||
|
|
||||||
|
|
|
@ -4,6 +4,24 @@
|
||||||
Salt Release Notes - Codename Fluorine
|
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
|
Grains Dictionary Passed into Custom Grains
|
||||||
-------------------------------------------
|
-------------------------------------------
|
||||||
|
|
Loading…
Add table
Reference in a new issue