Return cached data from minions
salt.runners.cache.clear_all(tgt=None, expr_form='glob')¶Clear the cached pillar, grains, and mine data of the targeted minions
CLI 范例:
salt-run cache.clear_all
salt.runners.cache.clear_git_lock(role, remote=None)¶2015.8.2 新版功能.
Remove the update locks for Salt components (gitfs, git_pillar, winrepo) which use gitfs backend code from salt.utils.gitfs.
注解
Running cache.clear_all will
not include this function as it does for pillar, grains, and mine.
Additionally, executing this function with a role of gitfs is
equivalent to running salt-run fileserver.clear_lock backend=git.
gitfs, git_pillar, or
winrepo)remote value of github
will remove the lock from all github.com remotes.CLI 范例:
salt-run cache.clear_git_lock git_pillar
salt.runners.cache.clear_grains(tgt=None, expr_form='glob')¶Clear the cached grains data of the targeted minions
CLI 范例:
salt-run cache.clear_grains
salt.runners.cache.clear_mine(tgt=None, expr_form='glob')¶Clear the cached mine data of the targeted minions
CLI 范例:
salt-run cache.clear_mine
salt.runners.cache.clear_mine_func(tgt=None, expr_form='glob', clear_mine_func_flag=None)¶Clear the cached mine function data of the targeted minions
CLI 范例:
salt-run cache.clear_mine_func tgt='*' clear_mine_func_flag='network.interfaces'
salt.runners.cache.clear_pillar(tgt=None, expr_form='glob')¶Clear the cached pillar data of the targeted minions
CLI 范例:
salt-run cache.clear_pillar
salt.runners.cache.grains(tgt=None, expr_form='glob', **kwargs)¶Return cached grains of the targeted minions
CLI 范例:
salt-run cache.grains
salt.runners.cache.mine(tgt=None, expr_form='glob', **kwargs)¶Return cached mine data of the targeted minions
CLI 范例:
salt-run cache.mine
salt.runners.cache.pillar(tgt=None, expr_form='glob', **kwargs)¶Return cached pillars of the targeted minions
CLI 范例:
salt-run cache.pillar