Coder Social home page Coder Social logo

deltachat / pyinfra2 Goto Github PK

View Code? Open in Web Editor NEW

This project forked from pyinfra-dev/pyinfra

0.0 1.0 0.0 21.01 MB

pyinfra automates infrastructure using Python. It’s fast and scales from one server to thousands. Great for ad-hoc command execution, service deployment, configuration management and more.

Home Page: https://pyinfra.com

License: MIT License

Shell 0.39% Python 99.61% Jinja 0.01%

pyinfra2's Introduction

pyinfra

pyinfra automates infrastructure super fast at massive scale
ad-hoc command execution, service deployment, configuration management and more


DocumentationGetting StartedExamplesHelp & SupportContributing

Chat (both bridged) ⇒ #pyinfra on MatrixDiscord


Why pyinfra? Design features include:

  • 🚀 Super fast execution over thousands of hosts with predictable performance.
  • 🚨 Instant debugging with realtime stdin/stdout/stderr output (-vvv).
  • 🔄 Idempotent operations that enable diffs and --dry runs before executing any changes.
  • 📦 Extendable with any Python package as configured & written in standard Python.
  • 💻 Agentless execution against SSH/Docker/subprocess/WinRM hosts.
  • 🔌 Integrated with Docker, Terraform, Vagrant/Mech & Ansible out of the box.

When you run pyinfra you'll see something like (non animated version):

Quickstart

Install pyinfra with pipx (recommended) or pip:

pipx install pyinfra

Now you can execute commands on hosts via SSH:

pyinfra my-server.net exec -- echo "hello world"

Or execute in Docker, on the local machine, and other connectors:

pyinfra @docker/ubuntu exec -- echo "Hello world"
pyinfra @local exec -- echo "Hello world"

As well as executing commands you can define state using operations:

# Install iftop apt package if not present
pyinfra @docker/ubuntu apt.packages iftop update=true _sudo=true

Which can then be saved as a Python file like deploy.py:

from pyinfra.operations import apt

apt.packages(
    name="Ensure iftop is installed",
    packages=['iftop'],
    update=True,
    _sudo=True,
)

The hosts can also be saved in a file, for example inventory.py:

targets = ["@docker/ubuntu", "my-test-server.net"]

And executed together:

pyinfra inventory.py deploy.py

Now you know the building blocks of pyinfra! By combining inventory, operations and Python code you can deploy anything.

See the more detailed getting started or using operations guides. See how to use inventory & data, global arguments and the CLI or check out the documented examples.


PyPI version PyPi downloads Docs status Execute tests status Codecov Coverage MIT Licensed

pyinfra2's People

Contributors

fizzadar avatar mkinney avatar hoh avatar foobarquaxx avatar gchazot avatar sysadmin75 avatar jmpolom avatar uggedal avatar charles-l avatar stefanbras avatar jaysoffian avatar scottkevill avatar lun-4 avatar gdoumenc avatar morrison12 avatar i-do-cpp avatar meantheory avatar remybar avatar tsnoam avatar stchris avatar tobald avatar minusf avatar glassbeads avatar stevenkaras avatar sfermigier avatar simonw avatar gaming4lifede avatar pabloxio avatar mfrg avatar wowi42 avatar

Watchers

 avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.