瀏覽代碼

fix(minion): update config parameter saltenv

`environment` is being deprecated, renamed to `saltenv`
tags/v1.9.10
Javier Bértoli 2 年之前
父節點
當前提交
7540dc90aa
共有 1 個檔案被更改,包括 6 行新增1 行删除
  1. +6
    -1
      salt/files/minion.d/f_defaults.conf

+ 6
- 1
salt/files/minion.d/f_defaults.conf 查看文件

@@ -575,11 +575,16 @@ schedule:
# enabled and can be disabled by changing this value to False.
{{ get_config('clean_dynamic_modules', 'True') }}

# Normally, the minion is not isolated to any single environment on the master
# Renamed from ``environment`` to ``saltenv``. If ``environment`` is used,
# ``saltenv`` will take its value. If both are used, ``environment`` will be
# ignored and ``saltenv`` will be used.
# Normally the minion is not isolated to any single environment on the master
# when running states, but the environment can be isolated on the minion side
# by statically setting it. Remember that the recommended way to manage
# environments is to isolate via the top file.
#saltenv: None
{{ get_config('environment', 'None') }}
{{ get_config('saltenv', 'None') }}
#
# Isolates the pillar environment on the minion side. This functions the same
# as the environment setting, but for pillar instead of states.

Loading…
取消
儲存