|
''' |
|
A saltstack module to resolve the application specifications for this particular minion |
|
The base appspecs are defined in pillar['appspecs'] |
|
The apps to deploy on this minion are defined via grains['apps'] |
|
For instance, grains['apps'] can be ['myapp','myotherapp'] or ['myapp@patch-1'] for changing revision number |
|
''' |
|
|
|
from os import path |
|
|
|
def apps(): |
|
''' |
|
Get a list of all applications to be configured in the generics system. |
|
Returns a list of (appname, appspec) |
|
''' |
|
specs = __pillar__.get('appspecs', {}) |
|
apps = __grains__.get('apps', []) |
|
|
|
appspecs = (appspec(app, _appspecs=specs) for app in apps) |
|
return [(aspec['app'], aspec) for aspec in appspecs if appspec] |
|
|
|
def procs(**filters): |
|
''' |
|
Get a list of all processes to be configured in the generics system. |
|
Returns a list of (appname, procname, appspec, procspec) |
|
Filters for processes that meet some filter. |
|
If a filter is None, just tests for existence in the procspec |
|
If a filter is not None, then it tests for equality in the procspec |
|
For example, nginx=None tests for nginx being in the procspec, but supervisord=True tests for procpsec['supervisord'] being True |
|
''' |
|
def gen(): |
|
for app, aspec in apps(): |
|
for proc in aspec['procs'].keys(): |
|
pspec = _procspec(app, proc, aspec=aspec) |
|
|
|
if any(key not in pspec or (value != None and pspec[key] != value) for key, value in filters.items()): |
|
continue |
|
|
|
yield app, proc, aspec, pspec |
|
|
|
return list(gen()) |
|
|
|
def appspec(app, _appspecs=None): |
|
''' |
|
Get the appspec for an app |
|
''' |
|
_appspecs = _appspecs or __pillar__.get('appspecs', {}) |
|
split = app.split('@') |
|
if len(split) > 1: |
|
app, rev = split # Here we set the revision number if an app has an '@' sign |
|
else: |
|
rev = None |
|
|
|
if app not in _appspecs: |
|
return None |
|
|
|
appspec = _appspecs[app] |
|
appspec['app'] = app |
|
appspec['rev'] = rev or appspec.get('rev', 'master') |
|
return appspec |
|
|
|
def procspec(app, proc, _appspecs=None): |
|
''' |
|
Get the procspec for an process |
|
''' |
|
return _procspec(app, proc, appspec(app, _appspecs)) |
|
|
|
def _procspec(app, proc, aspec): |
|
''' |
|
Get the procspec for an process from an aspec |
|
''' |
|
return aspec.get('procs', {}).get(proc, {}) |