I’ve always used Ansible to set up an APT/DEB repo to pull sensu go agents from, but the snippet below no longer works. At Sensu | Sensu Go Downloads the “latest” support distro/packaging is Focal. Any plans on creating releases for the 24.04 LTS?
- name: Install Sensu packages repository
apt_repository:
repo: "deb https://packagecloud.io/sensu/stable/ubuntu/ {{ ansible_distribution_release }} main"
state: present
filename: sensu-stable
- name: Install Sensu Ruby Plugins repository
apt_repository:
repo: "deb https://packagecloud.io/sensu/community/ubuntu/ {{ ansible_distribution_release }} main"
state: present
filename: sensu-community
Full playbook: A simple playbook for installing, configuring and starting a Sensu Go agent · GitHub