instance-apache-replicate.cfg.in 7.32 KB
Newer Older
1
{% if slap_software_type in software_type %}
2 3 4 5 6 7 8

[jinja2-template-base]
recipe = slapos.recipe.template:jinja2
rendered = ${buildout:directory}/${:filename}
extra-context =
context =
    import json_module json
9
    raw common_profile {{ common_profile }}
10 11
    ${:extra-context}

12
{% set part_list = [] %}
13 14
{% set single_type_key = 'single-' %}
{% if slap_software_type == "replicate" %}
15 16 17 18 19 20 21 22
{%   set frontend_type = slapparameter_dict.pop('-frontend-type', 'single-default') %}
{% elif slap_software_type in ['default', 'RootSoftwareInstance'] %}
{%   set frontend_type = "%s%s" % (single_type_key, 'custom-personal') %}
{% else %}
{%   set frontend_type = "%s%s" % (single_type_key, slap_software_type) %}
{% endif %}
{% set frontend_quantity = slapparameter_dict.pop('-frontend-quantity', '1') | int %}
{% set slave_list_name = 'extra_slave_instance_list' %}
23 24 25
{% set frontend_list = [] %}
{% set frontend_section_list = [] %}
{% set request_dict = {} %}
26
{% set namebase = 'caddy-frontend' %}
27
# XXX Dirty hack, not possible to define default value before
28 29 30 31
{% set sla_computer_caddy_1_key = '-sla-1-computer_guid' %}
{% if not sla_computer_caddy_1_key in slapparameter_dict %}
{%   do slapparameter_dict.__setitem__(sla_computer_caddy_1_key, '${slap-connection:computer-id}') %}
{% endif %}
32

33
# Here we request individually each frontend.
34
# The presence of sla parameters is checked and added if found
35 36 37 38
{% for i in range(1, frontend_quantity + 1) %}
{%   set frontend_name = "%s-%s" % (namebase, i) %}
{%   set request_section_title = 'request-%s' % frontend_name %}
{%   set sla_key = "-sla-%s-" % i %}
39 40 41 42 43 44 45 46 47
{%   set sla_key_length = sla_key | length %}
{%   set sla_dict = {} %}
{%   set config_key = "-frontend-config-%s-" % i %}
{%   set config_key_length = config_key | length %}
{%   set config_dict = {} %}
{%   for key in slapparameter_dict.keys() %}
{%     if key.startswith(sla_key) %}
{%       do sla_dict.__setitem__(key[sla_key_length:], slapparameter_dict.pop(key)) %}
# We check for specific configuration regarding the frontend
48
{%     elif key.startswith(config_key) %}
49
{%       do config_dict.__setitem__(key[config_key_length:], slapparameter_dict.pop(key)) %}
50 51 52 53 54
{%     endif %}
{%   endfor %}
{%   do frontend_list.append(frontend_name) %}
{%   do frontend_section_list.append(request_section_title) %}
{%   do part_list.append(request_section_title) %}
55 56 57 58 59 60 61 62 63
# Filling request dict for slave
{%   set state_key = "-frontend-%s-state" % i %}
{%   do request_dict.__setitem__(request_section_title,
                                  {
                                  'config': config_dict,
                                  'name': frontend_name,
                                  'sla': sla_dict,
                                  'state': slapparameter_dict.pop(state_key, None)
                                  }) %}
64
{% endfor %}
65

66
{% set authorized_slave_string = slapparameter_dict.pop('-frontend-authorized-slave-string', '') %}
67 68 69
{% set authorized_slave_list = [] %}
{% set rejected_slave_list = [] %}
{% for slave in slave_instance_list %}
70 71
{# BBB: apache_custom_https AND apache_custom_http #}
{%   if not ((slave.has_key('caddy_custom_http') or slave.has_key('apache_custom_http') or slave.has_key('caddy_custom_https') or slave.has_key('apache_custom_https')) and not slave.get('slave_reference') in authorized_slave_string) %}
72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87
{%     set slave_ok = True %}
{%     if slave.get('url') %}
{%       if subprocess_module.call([caddy_backend_url_validator, slave['url']]) == 1 %}
{%         set slave_ok = False %}
{%       endif %}
{%     endif %}
{%     if slave.get('https-url') %}
{%       if subprocess_module.call([caddy_backend_url_validator, slave['https-url']]) == 1 %}
{%         set slave_ok = False %}
{%       endif %}
{%     endif %}
{%     if slave_ok %}
{%       do authorized_slave_list.append(slave) %}
{%     else %}
{%       do rejected_slave_list.append(slave.get('slave_reference')) %}
{%     endif %}
88 89 90
{%   else %}
{%     do rejected_slave_list.append(slave.get('slave_reference')) %}
{%   endif %}
91
{% endfor %}
92

93 94 95
[monitor-instance-parameter]
monitor-httpd-port = {{ slapparameter_dict.get('monitor-httpd-port', '8196') }}

96 97
[replicate]
<= slap-connection
98
recipe = slapos.cookbook:requestoptional.serialised
99 100 101
config-monitor-cors-domains = {{ slapparameter_dict.get('monitor-cors-domains', 'monitor.app.officejs.com') }}
config-monitor-username = ${monitor-instance-parameter:username}
config-monitor-password = ${monitor-htpasswd:passwd}
102
config-monitor-httpd-port = {{ slapparameter_dict.get('monitor-httpd-port', '8196') }}
103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119

{% set frontend_software_url_key = "-frontend-software-release-url" %}
{% if slapparameter_dict.has_key(frontend_software_url_key) %}
software-url = {{ slapparameter_dict.pop(frontend_software_url_key) }}
{% else %}
software-url = ${slap-connection:software-release-url}
{% endif %}
software-type = {{frontend_type}}
return = private-ipv4 public-ipv4 slave-instance-information-list monitor-base-url

{% for section, frontend_request in request_dict.iteritems() %}
[{{section}}]
<= replicate
name = {{ frontend_request.get('name') }}
{%   if frontend_request.get('state') %}
state = {{ frontend_request.get('state') }}
{%   endif%}
120 121
{%   set slave_configuration_dict = slapparameter_dict %}
{%   do slave_configuration_dict.update(frontend_request.get('config')) %}
122 123
{%   do slave_configuration_dict.__setitem__(slave_list_name, json_module.dumps(authorized_slave_list)) %}
{%   do slave_configuration_dict.__setitem__("frontend-name", frontend_request.get('name')) %}
124 125 126
{%-   for config_key, config_value in slave_configuration_dict.iteritems() %}
config-{{ config_key }} = {{ dumps(config_value) }}
{%   endfor -%}
127
{%   if frontend_request.get('sla') %}
128
{%     for parameter, value in frontend_request.get('sla').iteritems() %}
129
sla-{{ parameter }} = {{ value }}
130 131 132
{%     endfor %}
{%   endif %}
{% endfor %}
133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155


[publish-information]
<= monitor-publish
recipe = slapos.cookbook:publish
domain = {{ slapparameter_dict.get('domain') }}
slave-amount = {{ slave_instance_list | length }}
accepted-slave-amount = {{ authorized_slave_list | length }}
rejected-slave-amount = {{ rejected_slave_list | length }}
rejected-slave-list = {{ json_module.dumps(rejected_slave_list) }}

#----------------------------
#--
#-- Publish slave information
[publish-slave-information]
recipe = slapos.cookbook:softwaretype
default = ${dynamic-publish-slave-information:rendered}
RootSoftwareInstance = ${dynamic-publish-slave-information:rendered}
replicate = ${dynamic-publish-slave-information:rendered}
custom-personal = ${dynamic-publish-slave-information:rendered}
custom-group = ${dynamic-publish-slave-information:rendered}

[slave-information]
156
{% for frontend_section in frontend_section_list %}
157
{{ frontend_section }} = {{ "${%s:connection-slave-instance-information-list}" % frontend_section }}
158
{% endfor %}
159 160 161 162 163 164 165 166 167 168 169 170 171

[dynamic-publish-slave-information]
< = jinja2-template-base
template = {{ template_publish_slave_information }}
filename = dynamic-publish-slave-information.cfg
extensions = jinja2.ext.do
extra-context =
    section slave_information slave-information

[monitor-conf-parameters]
monitor-url-list +=
{% for frontend in frontend_section_list %}
{{ '  ${' + frontend + ':connection-monitor-base-url}' }}
172
{% endfor %}
173 174

[buildout]
175 176 177
extends =
  {{ common_profile }}
  {{ template_monitor }}
178 179 180 181
parts =
  monitor-base
  publish-slave-information
  publish-information
182
{% for part in part_list %}
183
{{ '  %s' % part }}
184
{% endfor %}
185
#      publish-information
186
{% endif %}