minion_handler.sls: tests/pillar/minion_custom_handler.sls | minion_handler.sls: tests/pillar/minion_custom_handler.sls | ||||
minion_local_pillar.sls: tests/pillar/minion_local_pillar.sls | minion_local_pillar.sls: tests/pillar/minion_local_pillar.sls | ||||
minion_local_reclass.sls: tests/pillar/minion_local_reclass.sls | minion_local_reclass.sls: tests/pillar/minion_local_reclass.sls | ||||
minion_backend_urllib.sls: tests/pillar/minion_backend_urllib.sls | |||||
- name: master-default | - name: master-default | ||||
provisioner: | provisioner: |
host: 127.0.0.1 | host: 127.0.0.1 | ||||
port: 3128 | port: 3128 | ||||
Salt minion to specify non-default HTTP backend. The default tornado backend | |||||
does not respect HTTP proxy settings set as environment variables. This is | |||||
useful for cases where you need to set no_proxy lists. | |||||
.. code-block:: yaml | |||||
salt: | |||||
minion: | |||||
backend: urllib2 | |||||
Salt minion with PKI certificate authority (CA) | Salt minion with PKI certificate authority (CA) | ||||
.. literalinclude:: tests/pillar/minion_pki_ca.sls | .. literalinclude:: tests/pillar/minion_pki_ca.sls |
proxy_port: {{ minion.proxy.port }} | proxy_port: {{ minion.proxy.port }} | ||||
{%- endif %} | {%- endif %} | ||||
{%- if minion.backend is defined %} | |||||
backend: {{ minion.backend }} | |||||
{%- endif %} | |||||
{%- if minion.sentry is defined %} | {%- if minion.sentry is defined %} | ||||
sentry_handler: | sentry_handler: | ||||
{% for server in minion.sentry.servers %} | {% for server in minion.sentry.servers %} |
salt: | |||||
minion: | |||||
enabled: true | |||||
backend: urllib2 |