Advance sal/api.sls, install rest_cherrypy or rest_tornado from pip.
Signed-off-by: René Jochum <rene@jochums.at>
This commit is contained in:
		
							parent
							
								
									779e6c9c63
								
							
						
					
					
						commit
						7bb82b0178
					
				| @ -46,6 +46,7 @@ Configure pillar data under salt:ssh_roster to feed the template. | ||||
| 
 | ||||
| Install salt api | ||||
| Requisite: Configure salt-master with rest_cherrypy or rest_tornado. | ||||
| Requires: pip.extensions as it installs the latest version from pip. | ||||
| 
 | ||||
| ``salt.standalone`` | ||||
| ------------------- | ||||
|  | ||||
							
								
								
									
										42
									
								
								salt/api.sls
									
									
									
									
									
								
							
							
						
						
									
										42
									
								
								salt/api.sls
									
									
									
									
									
								
							| @ -1,16 +1,48 @@ | ||||
| #!jinja|yaml | ||||
| 
 | ||||
| {% from "salt/map.jinja" import salt_settings with context %} | ||||
| 
 | ||||
| include: | ||||
|   - salt.master | ||||
|   - pip.extensions | ||||
| 
 | ||||
| {%- set cfg_salt = pillar.get('salt', {}) %} | ||||
| {%- set cfg_master = cfg_salt.get('master', {}) %} | ||||
| 
 | ||||
| salt-api: | ||||
| {% if salt_settings.install_packages %} | ||||
|   pkg.installed: | ||||
|     - name: {{ salt_settings.salt_api }} | ||||
| {% endif %} | ||||
|     - name: {{ salt_settings['salt-api'] }} | ||||
|   service.running: | ||||
|     - name: {{ salt_settings.api_service }} | ||||
|     - name: {{ salt_settings.get('api_service', 'salt-api') }} | ||||
|     - require: | ||||
|       - service: {{ salt_settings.master_service }} | ||||
|       - service: {{ salt_settings.get('api_service', 'salt-api') }} | ||||
| {%- if 'rest_cherrypy' in cfg_master %} | ||||
|       - pip: salt-api-cherrypy | ||||
| {% elif 'rest_tornado' in cfg_master %} | ||||
|       - pip: salt-api-tornado | ||||
| {% endif %} | ||||
|     - watch: | ||||
|       - 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_ssh: salt-ssh | ||||
| 
 | ||||
|   python-cherrypy: python-cherrypy | ||||
|   python-tornado: python-tornado | ||||
| 
 | ||||
|   master: | ||||
|     gitfs_provider: gitpython | ||||
| 
 | ||||
|  | ||||
		Loading…
	
	
			
			x
			
			
		
	
		Reference in New Issue
	
	Block a user
	 René Jochum
						René Jochum