Merge pull request #150 from pcdummy/master
Advance salt/api.sls, install rest_cherrypy or rest_tornado from pip.
This commit is contained in:
commit
b90fdc6f6a
@ -46,6 +46,7 @@ Configure pillar data under salt:ssh_roster to feed the template.
|
|||||||
|
|
||||||
Install salt api
|
Install salt api
|
||||||
Requisite: Configure salt-master with rest_cherrypy or rest_tornado.
|
Requisite: Configure salt-master with rest_cherrypy or rest_tornado.
|
||||||
|
Requires: pip.extensions as it installs the latest version from pip.
|
||||||
|
|
||||||
``salt.standalone``
|
``salt.standalone``
|
||||||
-------------------
|
-------------------
|
||||||
|
43
salt/api.sls
43
salt/api.sls
@ -1,16 +1,47 @@
|
|||||||
|
#!jinja|yaml
|
||||||
|
|
||||||
{% from "salt/map.jinja" import salt_settings with context %}
|
{% from "salt/map.jinja" import salt_settings with context %}
|
||||||
|
|
||||||
include:
|
include:
|
||||||
- salt.master
|
- salt.master
|
||||||
|
- pip.extensions
|
||||||
|
|
||||||
salt-api:
|
{%- set cfg_salt = pillar.get('salt', {}) %}
|
||||||
{% if salt_settings.install_packages %}
|
{%- set cfg_master = cfg_salt.get('master', {}) %}
|
||||||
|
|
||||||
|
salt_api_install:
|
||||||
pkg.installed:
|
pkg.installed:
|
||||||
- name: {{ salt_settings.salt_api }}
|
- name: {{ salt_settings['salt_api'] }}
|
||||||
{% endif %}
|
|
||||||
service.running:
|
service.running:
|
||||||
- name: {{ salt_settings.api_service }}
|
- name: {{ salt_settings.get('api_service', 'salt-api') }}
|
||||||
- require:
|
- require:
|
||||||
- service: {{ salt_settings.master_service }}
|
{%- if 'rest_cherrypy' in cfg_master %}
|
||||||
|
- pip: salt_api_cherrypy
|
||||||
|
{% elif 'rest_tornado' in cfg_master %}
|
||||||
|
- pip: salt_api_tornado
|
||||||
|
{% endif %}
|
||||||
- watch:
|
- watch:
|
||||||
- pkg: salt-master
|
- pkg: salt-master
|
||||||
|
- file: salt-master
|
||||||
|
|
||||||
|
{%- if 'rest_cherrypy' in cfg_master %}
|
||||||
|
salt_api_cherrypy:
|
||||||
|
pkg.purged:
|
||||||
|
- name: {{ salt_settings['python-cherrypy'] }}
|
||||||
|
pip.installed:
|
||||||
|
- name: cherrypy
|
||||||
|
- require:
|
||||||
|
- pkg: salt_api_cherrypy
|
||||||
|
- pkg: pip_extensions
|
||||||
|
{% endif %}
|
||||||
|
|
||||||
|
{%- if 'rest_tornado' in cfg_master %}
|
||||||
|
salt_api_tornado:
|
||||||
|
pkg.purged:
|
||||||
|
- name: {{ salt_settings['python-tornado'] }}
|
||||||
|
pip.installed:
|
||||||
|
- name: tornado
|
||||||
|
- require:
|
||||||
|
- pkg: salt_api_tornado
|
||||||
|
- pkg: pip_extensions
|
||||||
|
{% endif %}
|
||||||
|
@ -18,6 +18,9 @@ salt:
|
|||||||
salt_api: salt-api
|
salt_api: salt-api
|
||||||
salt_ssh: salt-ssh
|
salt_ssh: salt-ssh
|
||||||
|
|
||||||
|
python-cherrypy: python-cherrypy
|
||||||
|
python-tornado: python-tornado
|
||||||
|
|
||||||
master:
|
master:
|
||||||
gitfs_provider: gitpython
|
gitfs_provider: gitpython
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user