Files
swaphb 6e7f5b39fb
Kube-bench CIS scan / Scan ephemeral K3s cluster (push) Successful in 59s
make falco alerting opt in
2026-08-16 21:36:09 -04:00

26 lines
597 B
YAML

---
- name: Bootstrap Flatcar k3d security test host
hosts: flatcar_k3d_hosts
become: true
gather_facts: false
vars:
argocd_enabled: true
cilium_enabled: false
cilium_profile: k3d
falco_alerting_enabled: false
pre_tasks:
- name: Read host operating system identity
ansible.builtin.raw: cat /etc/os-release
register: flatcar_os_release
changed_when: false
roles:
- role: flatcar_k3d_host
- role: cilium_bootstrap
when: cilium_enabled | bool
- role: argocd_bootstrap
when: argocd_enabled | bool
- role: falco_alerting