mirror of
https://github.com/saltstack/salt.git
synced 2025-04-17 10:10:20 +00:00
Allow additional kwargs in states.dockerng.image_present (#36156)
Fixes #31513
This commit is contained in:
parent
24b0387b92
commit
d4628f3c6b
1 changed files with 2 additions and 1 deletions
|
@ -474,7 +474,8 @@ def image_present(name,
|
|||
load=None,
|
||||
force=False,
|
||||
insecure_registry=False,
|
||||
client_timeout=CLIENT_TIMEOUT):
|
||||
client_timeout=CLIENT_TIMEOUT,
|
||||
**kwargs):
|
||||
'''
|
||||
Ensure that an image is present. The image can either be pulled from a
|
||||
Docker registry, built from a Dockerfile, or loaded from a saved image.
|
||||
|
|
Loading…
Add table
Reference in a new issue