mirror of
https://github.com/valitydev/salt.git
synced 2024-11-07 08:58:59 +00:00
Put legacy git_pillar on a deprecation path for Oxygen (#39225)
This adds a warning when legacy git_pillar is used, and a notice in the docs.
This commit is contained in:
parent
19c3d90a32
commit
fd3284f0c7
@ -56,6 +56,10 @@ the repo's URL. Configuration details can be found below.
|
||||
Configuring git_pillar for Salt releases before 2015.8.0
|
||||
========================================================
|
||||
|
||||
.. note::
|
||||
This legacy configuration for git_pillar will no longer be supported as of
|
||||
the **Oxygen** release of Salt.
|
||||
|
||||
For Salt releases earlier than :ref:`2015.8.0 <release-2015-8-0>`,
|
||||
GitPython is the only supported provider for git_pillar. Individual
|
||||
repositories can be configured under the :conf_master:`ext_pillar`
|
||||
@ -539,6 +543,14 @@ def _legacy_git_pillar(minion_id, repo_string, pillar_dirs):
|
||||
'''
|
||||
Support pre-Beryllium config schema
|
||||
'''
|
||||
salt.utils.warn_until(
|
||||
'Oxygen',
|
||||
'The git ext_pillar configuration is deprecated. Please refer to the '
|
||||
'documentation at '
|
||||
'https://docs.saltstack.com/en/latest/ref/pillar/all/salt.pillar.git_pillar.html '
|
||||
'for more information. This configuration will no longer be supported '
|
||||
'as of the Oxygen release of Salt.'
|
||||
)
|
||||
if pillar_dirs is None:
|
||||
return
|
||||
# split the branch, repo name and optional extra (key=val) parameters.
|
||||
|
Loading…
Reference in New Issue
Block a user