https://github.com/sysdiglabs/agent-ansible-collection
Ansible collection to manage the Sysdig Agent
https://github.com/sysdiglabs/agent-ansible-collection
ansible ansible-collection sysdig sysdig-agent
Last synced: 6 months ago
JSON representation
Ansible collection to manage the Sysdig Agent
- Host: GitHub
- URL: https://github.com/sysdiglabs/agent-ansible-collection
- Owner: sysdiglabs
- Created: 2023-04-04T16:37:53.000Z (about 2 years ago)
- Default Branch: main
- Last Pushed: 2024-11-15T00:02:35.000Z (6 months ago)
- Last Synced: 2024-11-15T01:17:02.953Z (6 months ago)
- Topics: ansible, ansible-collection, sysdig, sysdig-agent
- Language: Python
- Homepage: https://galaxy.ansible.com/ui/repo/published/sysdig/agent/
- Size: 657 KB
- Stars: 4
- Watchers: 7
- Forks: 0
- Open Issues: 25
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
Ansible Collection - sysdig.agent
=================================The Sysdig Ansible Collection handles the installation and configuration of the Sysdig Agent.
# Configuration
## Requirements
* `ansible-core >= 2.13`
* Host Operating Systems:
* Alma Linux 7+
* Amazon Linux (AL2 and AL2023)
* CentOS 7+
* Debian 10+
* Red Hat 7+
* Rocky Linux 7+
* Ubuntu 20.04+ (LTS Only)### Installation
To install the Sysdig Agent with this Role you first need to install the Role from the Ansible Galaxy.
```bash
?> ansible-galaxy collection install sysdig.agent
```### Install a Specific Version
If a specific version of the Collection is necessary it can be installed in the following manner
```bash
?> ansible-galaxy collection install sysdig.agent:==1.1.0
```### Upgrade
To install the Sysdig Agent with this Role you first need to install the Role from the Ansible Galaxy.
```bash
?> ansible-galaxy collection install sysdig.agent --upgrade
```# Example Playbook
Once the Collection has been installed it will then be possible to use the `agent_install` Role in Playbooks to install and configure the Sysdig Agent.
```yaml
- hosts: hosts
become: true
roles:
- role: sysdig.agent.agent_install
vars:
configuration:
connection:
access_key:
region:
```