Automatiza tareas de configuración de sistemas e infraestructura de servidores utilizando herramientas ligeras sin agentes que se comunican mediante SSH.
Ansible is an agentless infrastructure automation engine designed to manage remote servers and network devices. It functions as a cross-platform orchestration tool that coordinates system updates, software installations, and service configurations from a centralized management workstation. By utilizing a declarative approach, it allows users to define desired system states through human-readable configuration files, ensuring consistency across distributed environments. The platform operates by establishing secure shell connections to target nodes, eliminating the need for persistent agent sof
Ansible is the flagship agentless configuration management tool that uses SSH for remote execution, supports declarative playbooks and roles, manages inventories, and ensures idempotent state enforcement, exactly matching this search.
pyinfra is an agentless infrastructure automation framework that turns declarative Python code into idempotent shell commands to manage servers, containers, and local machines over SSH without requiring any pre-installed software on target hosts. It operates by comparing the desired state of a system against its current state, using a dry-run simulation mode to preview changes and a fact-based conditional execution engine to gather host attributes at runtime and control which operations run. The tool compiles Python operations into optimized shell commands and executes them in parallel across
pyinfra is an agentless automation framework that uses SSH to execute declarative Python code idempotently on managed hosts, fitting perfectly as a configuration management tool without requiring any pre-installed agent.