Timotej Lazar
17c8e84498
Certificates must still be requested manually, this just sets the domain and opens up port 80/tcp. Nothing listens there except for certbot during renewals so that’s OK.
29 lines
1.1 KiB
Django/Jinja
29 lines
1.1 KiB
Django/Jinja
[OPTIONS]
|
|
|
|
enable: 1
|
|
|
|
[RULES]
|
|
|
|
IN Ping(ACCEPT) -log nolog # don’t be rude
|
|
IN SSH(ACCEPT) -i mgmt # for ansible etc.
|
|
IN HTTP(ACCEPT) # allow HTTP connections for renewing certificates with ACME
|
|
|
|
IN ACCEPT -source {{ nodes | map('device_address') | flatten | selectattr('family.value', '==', 4) | map(attribute='address') | join(',') }} # my cluster
|
|
IN ACCEPT -source {{ nodes | map('device_address') | flatten | selectattr('family.value', '==', 6) | map(attribute='address') | join(',') }} # my cluster
|
|
|
|
{% for service in cluster_services %}
|
|
{% set prefixes = service | allowed_prefixes %}
|
|
{% set ports = service.ports | compact_numlist(range_delimiter=':') %}
|
|
{% if prefixes %}
|
|
{% if prefixes | ipv4 %}
|
|
IN ACCEPT -source {{ prefixes | ipv4 | join(',') }} -p {{ service.protocol.value }} -dport {{ ports }} # {{ service.name }}
|
|
{% endif %}
|
|
{% if prefixes | ipv6 %}
|
|
IN ACCEPT -source {{ prefixes | ipv6 | join(',') }} -p {{ service.protocol.value }} -dport {{ ports }} # {{ service.name }}
|
|
{% endif %}
|
|
{% else %}
|
|
IN ACCEPT -p {{ service.protocol.value }} -dport {{ ports }} # {{ service.name }}
|
|
{% endif %}
|
|
{% endfor %}
|
|
|