Skip to main content

Plugin to integrate Fabric with ploy.

Project description

Overview

The ploy_fabric plugin provides integration of Fabric with ploy.

Installation

ploy_fabric is best installed with easy_install, pip or with zc.recipe.egg in a buildout.

Once installed, it’s functionality is immediately usable with ploy.

Commands

The plugin adds the following commands to ploy.

do

Runs a Fabric task with simplified syntax for arguments. You can just put positional arguments on the command line behind the task name. For keyword arguments user the name=value syntax. For example:

ploy do something arg key=value
fab

Runs a Fabric task and passes on command line options to Fabric. This basically reflects the fab script of Fabric.

Options

Instances only get the new fabfile option to specify which file to look in for tasks. The location is relative to ploy.conf.

Instance methods

For the Python side, each instance gains the do(task, *args, **kwargs) method. The task argument is the name of a task from the Fabric script which should be run. The remaining arguments are passed on to that task.

Another helper added to each instance is a context manager accessible via the fabric attribute on instances. With that you can switch to a new ssh connection with a different user in your Fabric tasks:

from fabric.api import env, run


def sometask():
    run("whoami")  # prints the default user (root)
    with env.instance.fabric(user='foo'):
      run("whoami")  # prints 'foo' if the connection worked
    run("whoami")  # prints the default user (root)

All changes to the Fabric environment are reverted when the context manager exits.

Fabric task decorator

With ploy_fabric.context you can decorate a task to use a specific user with a separate connection. All changes to the Fabric environment are reverted when the context manager exits. This is useful if you want to run a task from inside another task.

from fabric.api import env, run
from ploy_fabric import context


@context  # always run with the default user
def sometask():
    run("whoami")  # prints the default user (root)


@context(user=None)  # always run with the default user (alternate syntax)
def someothertask():
    env.forward_agent = True
    run("whoami")  # prints the default user (root)


@context(user='foo')  # always run as foo user
def anothertask():
    env.forward_agent = False
    run("whoami")  # prints the default user (user)
    someothertask()
    assert env.forward_agent == False

Fabric environment

The Fabric environment has the following settings by default.

reject_unknown_hosts

Always set to True, ssh connections are handled by this plugin and ploy.

disable_known_hosts

Always set to True, handled by ploy.

host_string

The unique id of the current instance, only manipulate if you know what you do!

known_hosts

Path to the known_hosts file managed by ploy.

instances

Dictionary allowing access to the other instances to get variables or call methods on.

instance

The current instance to access variables from the config attribute or other things and methods.

config_base

The directory of ploy.conf.

Any option of the instance starting with fabric- is stripped of the fabric- prefix and overwrites settings in the environment with that name.

Changelog

2.0.0b2 - 2019-06-09

  • Pin to Fabric < 2dev. [fschulze]

  • Drop Python 3.4 support. [fschulze]

2.0.0b1 - 2018-02-07

  • Support Python 3.x via Fabric3. [fschulze]

  • Support for ploy 2.0.0. [fschulze]

1.1.0 - 2014-10-27

  • Require Fabric >= 1.4.0 and vastly simplify the necessary patching. [fschulze]

  • Close all newly opened connections after a Fabric call. [fschulze]

  • Add context manager and decorator to easily switch fabric connections. [fschulze]

1.0.0 - 2014-07-19

  • Added documentation. [fschulze]

1.0b6 - 2014-07-15

  • Allow overwriting of fabric env from config with options prefixed by fabric-, i.e. fabric-shell = /bin/sh -c. [fschulze]

1.0b5 - 2014-07-08

  • Packaging and test fixes. [fschulze]

  • Fix task listing for do command. [fschulze]

1.0b4 - 2014-07-04

  • Use unique id for host string to avoid issues. [fschulze]

  • Added fab command which is just a wrapper for Fabric with all it’s options and reworked do command into a simple version to just run a task. [fschulze]

  • Renamed mr.awsome to ploy and mr.awsome.fabric to ploy_fabric. [fschulze]

1.0b3 - 2014-06-09

  • When depending on Fabric, skip 1.8.3 which added a version pin on paramiko. [fschulze]

  • Only add Fabric to install_requires if it can’t be imported. That way we don’t get problems if it’s already installed as a system packages or in a virtualenv. [fschulze]

1.0b2 - 2014-05-15

  • Register fabfile massager for all instances. [fschulze]

  • Use context manager for output filtering and filter in do helper. [fschulze]

  • Moved setuptools-git from setup.py to .travis.yml, it’s only needed for releases and testing. [fschulze]

1.0b1 - 2014-03-24

  • Initial release [fschulze]

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

ploy_fabric-2.0.0b2.tar.gz (10.3 kB view details)

Uploaded Source

Built Distribution

ploy_fabric-2.0.0b2-py2.py3-none-any.whl (8.8 kB view details)

Uploaded Python 2 Python 3

File details

Details for the file ploy_fabric-2.0.0b2.tar.gz.

File metadata

  • Download URL: ploy_fabric-2.0.0b2.tar.gz
  • Upload date:
  • Size: 10.3 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: devpi-server/5.0.0.dev0 (py2.7.15; darwin)

File hashes

Hashes for ploy_fabric-2.0.0b2.tar.gz
Algorithm Hash digest
SHA256 9aebe81f96db9b943625a7dee0e0ceee02008e1c24777255d3cf5b58f06ec9b7
MD5 de5e8d7e851bdbdd0e8606bf0d809a93
BLAKE2b-256 51c779b4c8517deedd3ce9dadab26fef7b9a2cd1994febb4fdf00aad04583ed7

See more details on using hashes here.

File details

Details for the file ploy_fabric-2.0.0b2-py2.py3-none-any.whl.

File metadata

  • Download URL: ploy_fabric-2.0.0b2-py2.py3-none-any.whl
  • Upload date:
  • Size: 8.8 kB
  • Tags: Python 2, Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: devpi-server/5.0.0.dev0 (py2.7.15; darwin)

File hashes

Hashes for ploy_fabric-2.0.0b2-py2.py3-none-any.whl
Algorithm Hash digest
SHA256 f059a452e8751336cb0c3ef4ae5103aa90842c0cb484eb5996c3211578afae38
MD5 0dd8e5f6bdf6ed27628376269fe69e6c
BLAKE2b-256 c8d54b703a8ab7c01a6cac5b23f87810468c34a8cc95ad5cfa739b33cec50dca

See more details on using hashes here.

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page