Compare commits
12 Commits
role_wireg
...
main
Author | SHA1 | Date |
---|---|---|
Ruakij | 27e9d4a1ab | 2 years ago |
Ruakij | 755f9b2e1a | 2 years ago |
Ruakij | 753f456ef3 | 2 years ago |
Ruakij | 093612f3a7 | 2 years ago |
Ruakij | a92409c56f | 2 years ago |
Ruakij | f50e3ac33c | 2 years ago |
Ruakij | 668ff23ee6 | 2 years ago |
Ruakij | c2c6a2872f | 2 years ago |
Ruakij | c1c7ec9e56 | 2 years ago |
Ruakij | 550f6868ff | 2 years ago |
Ruakij | 3fe288f6a5 | 2 years ago |
Ruakij | 15ad7920d4 | 2 years ago |
@ -1,13 +1,12 @@
|
|||||||
- name: Install K3s agent
|
- name: Install K3s agent
|
||||||
command: /root/k3s_install.sh {{ type }}
|
command: /root/k3s_install.sh {{ type }}
|
||||||
register: command
|
register: command
|
||||||
changed_when: "'No change detected' in command.stdout"
|
changed_when: "'No change detected' not in command.stdout"
|
||||||
until: "command is not failed"
|
until: "command is not failed"
|
||||||
retries: 2
|
retries: 2
|
||||||
delay: 10
|
delay: 10
|
||||||
|
|
||||||
- name: Restart when config changed, but install already done
|
- name: Make sure service is started / restarted on config change
|
||||||
service:
|
service:
|
||||||
name: k3s
|
name: k3s-agent
|
||||||
status: restarted
|
state: "{{ 'restarted' if not command.changed and config.changed else 'started' }}"
|
||||||
when: "inventory_hostname != groups['kubernetes'][0] and not command.changed and config.changed"
|
|
||||||
|
@ -0,0 +1,29 @@
|
|||||||
|
nftables:
|
||||||
|
# Rules to add
|
||||||
|
# Handled as templates
|
||||||
|
# Creates separate files for each entry.
|
||||||
|
# The identifier is necessary for ansible to be able to merge the keys (when 'hash_behaviour = merge')
|
||||||
|
# rule-ids have to be unique across files and raw
|
||||||
|
rules:
|
||||||
|
# Files with Rules to add
|
||||||
|
files:
|
||||||
|
#'<group_identifier>': '<relative-location>'
|
||||||
|
#'<group_identifier>':
|
||||||
|
# main: <relative-location>
|
||||||
|
# '<identifier>': '<relative-location>'
|
||||||
|
|
||||||
|
# Rules to add
|
||||||
|
raw:
|
||||||
|
#'<group_identifier>': '<content>'
|
||||||
|
#'<group_identifier>':
|
||||||
|
# main: <content>
|
||||||
|
# '<identifier>': '<content>'
|
||||||
|
|
||||||
|
# Decides if /etc/nftables.conf is applied or separate files which have changed
|
||||||
|
# Separate changes require the files to be self-tyding to not end up with duplicate rules
|
||||||
|
# e.g.
|
||||||
|
# table ip mytable
|
||||||
|
# flush table ip mytable
|
||||||
|
# delete table ip mytable
|
||||||
|
# table ip mytable {} ...
|
||||||
|
apply_global: false
|
@ -0,0 +1,8 @@
|
|||||||
|
- name: Load group rules
|
||||||
|
command: "nft -f /etc/nftables/ansible-managed/{{ item }}.nft"
|
||||||
|
loop: "{{ combined_rules | list }}"
|
||||||
|
when: not nftables.apply_global
|
||||||
|
|
||||||
|
- name: Load global rule file
|
||||||
|
command: "nft -f /etc/nftables.nft"
|
||||||
|
when: nftables.apply_global
|
@ -0,0 +1,11 @@
|
|||||||
|
- name: Deploying group files
|
||||||
|
include_tasks: ./per-group-template-file.yml
|
||||||
|
with_items:
|
||||||
|
- "{{ nftables.rules.files | list }}"
|
||||||
|
|
||||||
|
- name: Deploying group raw-files
|
||||||
|
include_tasks: ./per-group-template.yml
|
||||||
|
with_items:
|
||||||
|
- "{{ nftables.rules.raw | list }}"
|
||||||
|
|
||||||
|
- include_tasks: ./remove-files.yml
|
@ -0,0 +1,51 @@
|
|||||||
|
- set_fact:
|
||||||
|
group_identifier: "{{ item }}"
|
||||||
|
value: "{{ nftables.rules.files[item] }}"
|
||||||
|
when: "item is defined"
|
||||||
|
|
||||||
|
#'<group_identifier>': '<relative-location>'
|
||||||
|
- block:
|
||||||
|
- name: Create main rule file
|
||||||
|
template:
|
||||||
|
src: "{{ value }}"
|
||||||
|
dest: "/etc/nftables/ansible-managed/{{ group_identifier }}.nft"
|
||||||
|
when: value is string
|
||||||
|
|
||||||
|
#'<group_identifier>':
|
||||||
|
# main: <relative-location>
|
||||||
|
# '<identifier>': '<relative-location>'
|
||||||
|
- block:
|
||||||
|
- set_fact:
|
||||||
|
items: "{{ nftables.rules.files[item] }}"
|
||||||
|
|
||||||
|
- block:
|
||||||
|
- name: Create main rule file
|
||||||
|
template:
|
||||||
|
src: "{{ items['main'] }}"
|
||||||
|
dest: "/etc/nftables/ansible-managed/{{ group_identifier }}.nft"
|
||||||
|
|
||||||
|
- name: Include rule files
|
||||||
|
lineinfile:
|
||||||
|
path: "/etc/nftables/ansible-managed/{{ group_identifier }}.nft"
|
||||||
|
regexp: "include\\s+(\"|')\\/etc\\/nftables\\/ansible-managed\\/{{ group_identifier }}\\/.*$"
|
||||||
|
line: 'include "/etc/nftables/ansible-managed/{{ group_identifier }}/*.nft"'
|
||||||
|
when: items['main'] is defined
|
||||||
|
|
||||||
|
- name: Create group folder
|
||||||
|
file:
|
||||||
|
path: "/etc/nftables/ansible-managed/{{ group_identifier }}/"
|
||||||
|
state: directory
|
||||||
|
when: items|length > 0
|
||||||
|
|
||||||
|
- set_fact:
|
||||||
|
test: "{{ items | dict2items | selectattr('key', 'ne', 'main') }}"
|
||||||
|
|
||||||
|
- name: Create included rule files
|
||||||
|
template:
|
||||||
|
src: "{{ fileItem.value }}"
|
||||||
|
dest: "/etc/nftables/ansible-managed/{{ group_identifier }}/{{ fileItem.key }}.nft"
|
||||||
|
loop: "{{ items | dict2items | selectattr('key', 'ne', 'main') }}"
|
||||||
|
loop_control:
|
||||||
|
loop_var: fileItem
|
||||||
|
|
||||||
|
when: value is mapping
|
@ -0,0 +1,48 @@
|
|||||||
|
- set_fact:
|
||||||
|
group_identifier: "{{ item }}"
|
||||||
|
value: "{{ nftables.rules.raw[item] }}"
|
||||||
|
when: "item is defined"
|
||||||
|
|
||||||
|
#'<group_identifier>': '<content>'
|
||||||
|
- block:
|
||||||
|
- name: Create main rule file
|
||||||
|
copy:
|
||||||
|
content: "{{ value }}"
|
||||||
|
dest: "/etc/nftables/ansible-managed/{{ group_identifier }}.nft"
|
||||||
|
when: value is string
|
||||||
|
|
||||||
|
#'<group_identifier>':
|
||||||
|
# main: <content>
|
||||||
|
# '<identifier>': '<content>'
|
||||||
|
- block:
|
||||||
|
- set_fact:
|
||||||
|
items: "{{ nftables.rules.raw[item] }}"
|
||||||
|
|
||||||
|
- block:
|
||||||
|
- name: Create main rule file
|
||||||
|
copy:
|
||||||
|
content: "{{ items['main'] }}"
|
||||||
|
dest: "/etc/nftables/ansible-managed/{{ group_identifier }}.nft"
|
||||||
|
|
||||||
|
- name: Include rule files
|
||||||
|
lineinfile:
|
||||||
|
path: "/etc/nftables/ansible-managed/{{ group_identifier }}.nft"
|
||||||
|
regexp: "include\\s+(\"|')\\/etc\\/nftables\\/ansible-managed\\/{{ group_identifier }}\\/.*$"
|
||||||
|
line: 'include "/etc/nftables/ansible-managed/{{ group_identifier }}/*.nft"'
|
||||||
|
when: items['main'] is defined
|
||||||
|
|
||||||
|
- name: Create group folder
|
||||||
|
file:
|
||||||
|
path: "/etc/nftables/ansible-managed/{{ group_identifier }}/"
|
||||||
|
state: directory
|
||||||
|
when: items|length > 0
|
||||||
|
|
||||||
|
- name: Create included rule files
|
||||||
|
copy:
|
||||||
|
content: "{{ included_item.value }}"
|
||||||
|
dest: "/etc/nftables/ansible-managed/{{ group_identifier }}/{{ included_item.key }}.nft"
|
||||||
|
loop: "{{ items | dict2items | selectattr('key', 'ne', 'main') }}"
|
||||||
|
loop_control:
|
||||||
|
loop_var: included_item
|
||||||
|
|
||||||
|
when: value is mapping
|
@ -0,0 +1,4 @@
|
|||||||
|
- name: Install Packages
|
||||||
|
package:
|
||||||
|
name:
|
||||||
|
- nftables
|
@ -0,0 +1,7 @@
|
|||||||
|
- import_tasks: ./prerequisites.yml
|
||||||
|
|
||||||
|
- import_tasks: ./setup-packages.yml
|
||||||
|
|
||||||
|
- import_tasks: ./deploy-rules/main.yml
|
||||||
|
|
||||||
|
- import_tasks: ./apply-files.yml
|
@ -0,0 +1,13 @@
|
|||||||
|
# Defaults if missing
|
||||||
|
- name: Set defaults if missing
|
||||||
|
set_fact:
|
||||||
|
nftables:
|
||||||
|
rules:
|
||||||
|
files: "{{ nftables.rules.files | default({}) | combine({}) }}"
|
||||||
|
raw: "{{ nftables.rules.raw | default({}) | combine({}) }}"
|
||||||
|
combined_rules: "{{ nftables.rules.raw | combine(nftables.rules.files, recursive=true) }}"
|
||||||
|
|
||||||
|
#- name: Check items for consistency
|
||||||
|
# assert:
|
||||||
|
# that: "{{ nftables.rules.files.values() | length }} + {{ nftables.rules.raw.values() | length }} == {{ combined_rules.values() | length }}"
|
||||||
|
# fail_msg: "files and raw rules share the same identifier"
|
@ -0,0 +1,21 @@
|
|||||||
|
- name: Handle removed group files
|
||||||
|
block:
|
||||||
|
- find:
|
||||||
|
paths: /etc/nftables/ansible-managed/
|
||||||
|
file_type: 'any'
|
||||||
|
excludes: '{% for item in combined_rules %}{{ item }},{{ item }}.nft,{% endfor %}'
|
||||||
|
depth: 1
|
||||||
|
register: removeFiles
|
||||||
|
|
||||||
|
- file:
|
||||||
|
path: "{{ fileItem.path }}"
|
||||||
|
state: absent
|
||||||
|
loop: "{{ removeFiles.files }}"
|
||||||
|
loop_control:
|
||||||
|
label: "{{ fileItem.path }}"
|
||||||
|
loop_var: fileItem
|
||||||
|
|
||||||
|
- name: Handle removed included files per group
|
||||||
|
include_tasks: ./remove-per-group.yml
|
||||||
|
with_items:
|
||||||
|
- "{{ combined_rules | list }}"
|
@ -0,0 +1,20 @@
|
|||||||
|
- set_fact:
|
||||||
|
group_identifier: "{{ item }}"
|
||||||
|
group_items: "{{ combined_rules[item] }}"
|
||||||
|
|
||||||
|
- block:
|
||||||
|
- find:
|
||||||
|
paths: "/etc/nftables/ansible-managed/{{ group_identifier }}/"
|
||||||
|
file_type: 'any'
|
||||||
|
excludes: '{% for item in group_items %}{{ item }}.nft,{% endfor %}'
|
||||||
|
register: removeFiles
|
||||||
|
|
||||||
|
- file:
|
||||||
|
path: "{{ fileItem.path }}"
|
||||||
|
state: absent
|
||||||
|
loop: "{{ removeFiles.files }}"
|
||||||
|
loop_control:
|
||||||
|
label: "{{ fileItem.path }}"
|
||||||
|
loop_var: fileItem
|
||||||
|
|
||||||
|
when: group_items is mapping
|
@ -0,0 +1,15 @@
|
|||||||
|
- name: Install nftables
|
||||||
|
package:
|
||||||
|
name:
|
||||||
|
- nftables
|
||||||
|
|
||||||
|
- name: Create /etc/nftables/ansible-managed
|
||||||
|
file:
|
||||||
|
path: /etc/nftables/ansible-managed
|
||||||
|
state: directory
|
||||||
|
|
||||||
|
- name: Include files in /etc/nftables/ansible-managed/ from /etc/nftables.conf
|
||||||
|
blockinfile:
|
||||||
|
path: /etc/nftables.conf
|
||||||
|
marker: "# {mark} ANSIBLE MANAGED BLOCK - nftables"
|
||||||
|
content: 'include "/etc/nftables/ansible-managed/*.nft"'
|
Loading…
Reference in New Issue