add pseudo-bundle to add configs to c3voc ansible managed hosts

This commit is contained in:
Franzi 2021-01-16 20:57:33 +01:00
parent bdac36bea8
commit 0b9056bd2b
Signed by: kunsi
GPG key ID: 12E3D2136B818350
4 changed files with 157 additions and 0 deletions

22
nodes/voc/pretalx.py Normal file
View file

@ -0,0 +1,22 @@
# Add-On for pretalx vm hosted at c3voc.
# c3voc ansible only takes care of the basic things, this node only
# does the things ansible does *not* do.
nodes['voc.pretalx'] = {
'hostname': 'pretalx.c3voc.de',
'bundles': {
'c3voc-addons',
# 'pretalx',
'postgresql',
},
'metadata': {
'nginx': {
'vhosts': {
'pretalx': {
'domain': 'pretalx.c3voc.de',
# 'extras': True,
},
},
},
},
}