Procházet zdrojové kódy

* add gitfs whitelist and blacklist

tags/v0.57.0
Kevin Schmidt před 9 roky
rodič
revize
41f2de74bd
1 změnil soubory, kde provedl 24 přidání a 0 odebrání
  1. +24
    -0
      salt/files/master.d/f_defaults.conf

+ 24
- 0
salt/files/master.d/f_defaults.conf Zobrazit soubor

@@ -652,6 +652,30 @@ gitfs_remotes:
# repository and defaults to the repository root.
{{ get_config('gitfs_root', 'somefolder/otherfolder') }}

# The gitfs_env_whitelist and gitfs_env_blacklist parameters allow for greater
# control over which branches/tags are exposed as fileserver environments.
{% if 'gitfs_env_whitelist' in cfg_master -%}
gitfs_env_whitelist:
{%- for git_env in cfg_master['gitfs_env_whitelist'] %}
- {{ git_env }}
{%- endfor -%}
{% else -%}
# gitfs_env_whitelist:
# - base
# - v1.*
{% endif %}

{% if 'gitfs_env_blacklist' in cfg_master -%}
gitfs_env_blacklist:
{%- for git_env in cfg_master['gitfs_env_blacklist'] %}
- {{ git_env }}
{%- endfor -%}
{% else -%}
# gitfs_env_blacklist:
# - bug/*
# - feature/*
{% endif %}


##### Pillar settings #####
##########################################

Načítá se…
Zrušit
Uložit