• Stars
    star
    107
  • Rank 321,649 (Top 7 %)
  • Language
    Python
  • License
    Apache License 2.0
  • Created over 9 years ago
  • Updated 5 months ago

Reviews

There are no reviews yet. Be the first to send feedback to the community and the maintainers!

Repository Details

Creates Wheel based archives to allow portable offline installation of Python packages and their dependencies

Wagon

Build Status Build status PyPI version Supported Python Versions Requirements Status Code Coverage Code Quality Is Wheel

A wagon (also spelt waggon in British and Commonwealth English) is a heavy four-wheeled vehicle pulled by draught animals, used for transporting goods, commodities, agricultural materials, supplies, and sometimes people. Wagons are distinguished from carts, which have two wheels, and from lighter four-wheeled vehicles primarily for carrying people, such as carriages.

or.. it is just a set of (Python) Wheels.

NOTE: To accommodate for the inconsistencies between wagon and pip, and to allow for additional required functionality, we will have to perform breaking changes until we can release v1.0.0. Please make sure you hardcode your wagon versions up until then.

Incentive

Cloudify Plugins are packaged as sets of Python Wheels in tar.gz/zip archives and so we needed a tool to create such entities; hence, Wagon.

Requirements

  • Wagon requires pip 1.4+ to work as this is the first version of pip to support Wheels.
  • Wagon supports Linux, Windows and OSX on Python 2.7 and 3.4+. Python 2.5 will not be supported as it is not supported by pip. Python 2.6.x is not longer supported as wheel itself doesn't support it.
  • Wagon is currently tested on both Linux and Windows (via Travis and AppVeyor).
  • To be able to create Wagons of Wheels which include C extensions on Windows, you must have the C++ Compiler for Python installed.
  • To be able to create Wagons of Wheels which include C extensions on Linux or OSX, you must have the required compiler installed depending on your base distro. Usually:
    • RHEL based required gcc and python-devel.
    • Debian based require gcc and python-dev.
    • Other linux distributions will usually require gcc but might require additional packages.
    • OSX requires gcc.

Installation

pip install wagon

# latest development version
pip install http://github.com/cloudify-cosmo/wagon/archive/master.tar.gz

Backward Compatilibity

NOTE: pip 10.x breaks wagon<=0.7.0 due to the removal of the --use-wheel. If you're using pip>=10.x, please make sure you use wagon>=0.8.0. Also, if you're using pip<=7.x, use wagon<=0.7.0.

NOTE: wagon>=0.7.0 drops support for Python 2.6, 3.2 and 3.3 since Wheel itself no longer supports these versions. Please use wagon<=0.6.1 if you still need to support those versions.

Usage

NOTE: Currently, Wagon allows to pass arbitrary args to pip wheel and pip install. The way in which this is implemented is inconsistent with pip's implementation (wagon just allows passing a -a flag for all args.) This will be changed in the future to correspond to pip's implementation. See #70 for more information.

$ wagon
usage: wagon [-h] [-v] {create,install,validate,show,repair} ...

Create and install wheel based packages with their dependencies

positional arguments:
  {create,install,validate,show,repair}
    create              Create a Wagon archive
    install             Install a Wagon archive
    validate            Validate a wagon archive
    show                Print out the metadata of a wagon
    repair              Repair a Wagon archive

optional arguments:
  -h, --help            show this help message and exit
  -v, --verbose         Set verbose logging level (default: False)

...

Create Packages

$ wagon create flask
...

Creating archive for flask...
Retrieving source...
Source is: Flask
Downloading Wheels for Flask...
Collecting Flask
Using cached Flask-0.12-py2.py3-none-any.whl
Saved /tmp/tmpcYHwh0/Flask/wheels/Flask-0.12-py2.py3-none-any.whl
Collecting itsdangerous>=0.21 (from Flask)
Saved /tmp/tmpcYHwh0/Flask/wheels/itsdangerous-0.24-cp27-none-any.whl
Collecting click>=2.0 (from Flask)
Using cached click-6.7-py2.py3-none-any.whl
Saved /tmp/tmpcYHwh0/Flask/wheels/click-6.7-py2.py3-none-any.whl
...
Skipping MarkupSafe, due to already being wheel.
Platform is: linux_x86_64
Generating Metadata...
Writing metadata to file: /tmp/tmpcYHwh0/Flask/package.json
Creating tgz archive: ./Flask-0.12-py27-none-linux_x86_64.wgn...
Removing work directory...
Wagon created successfully at: ./Flask-0.12-py27-none-linux_x86_64.wgn

...

Requirement Files

NOTE: Beginning with Wagon 0.5.0, Wagon no longer looks up requirement files within archives or in the local directory when creating wagons. You must expclitly specify requirement files.

You can provide multiple requirement files to be resolved by using the -r flag (multiple times).

Editable Mode

Wagon doesn't currently provide a way for packaging packages that are in editable mode. So, for instance, providing a dev-requirements file which contains a -e DEPENDENCY requirement will not be taken into consideration. This is not related to wagon but rather to the default pip wheel implementation stating that it will be "Skipping bdist_wheel for #PACKAGE#, due to being editable".

Install Packages

$ wagon install Flask-0.12-py27-none-linux_x86_64.wgn
...

Installing Flask-0.12-py27-none-linux_x86_64.wgn
Retrieving source...
Extracting tgz Flask-0.12-py27-none-linux_x86_64.wgn to /tmp/tmplXv6Fi...
Source is: /tmp/tmplXv6Fi/Flask
Validating Platform linux_x86_64 is supported...
Installing Flask...
Installing within current virtualenv
Collecting Flask
Collecting itsdangerous>=0.21 (from Flask)
...
Installing collected packages: itsdangerous, Werkzeug, Flask
Successfully installed Flask-0.12 Werkzeug-0.11.15 itsdangerous-0.24

...

NOTE: --pre is appended to the installation command to enable installation of prerelease versions.

Installing Manually

While wagon provides a generic way of installing wagon created archives, you might not want to use the installer as you might not wish to install wagon on your application servers. Installing the package manually via pip is as easy as running (for example):

# For Linux (Windows wagon archives are zip files)
tar -xzvf ./Flask-0.12-py27-none-linux_x86_64.wgn
pip install --no-index --find-links Flask/wheels flask

Validate Packages

The validate function provides shallow validation of a Wagon archive. Basically, that all required wheels for a package are present and that the package is installable.

This shallow validation should, at the very least, verify that a Wagon archive is not corrupted. Note that the --validate flag provided with the create function uses this same validation method. Also note that validation must take place only on an OS distribution which supports the wagon archive if it contains C extensions. For instance, a win32 specific wagon archive will fail to validate on a Linux machine.

venv Python's stdlib module must be installed for Wagon to be able to validate an archive to not pollute the current environment.

$ wagon validate Flask-0.12-py27-none-linux_x86_64.wgn
...

Validating Flask-0.12-py27-none-linux_x86_64.wgn
Retrieving source...
Extracting tgz Flask-0.12-py27-none-linux_x86_64.wgn to /tmp/tmp2gqpy1...
Source is: /tmp/tmp2gqpy1/Flask
Verifying that all required files exist...
Testing package installation...
Creating Virtualenv /tmp/tmpdPNDIi...
Using real prefix '/usr'
New python executable in /tmp/tmpdPNDIi/bin/python2
Also creating executable in /tmp/tmpdPNDIi/bin/python
Installing setuptools, pip, wheel...done.
Installing /tmp/tmp2gqpy1/Flask
Retrieving source...
Source is: /tmp/tmp2gqpy1/Flask
Validating Platform linux_x86_64 is supported...
Installing Flask...
Collecting Flask
...
Installing collected packages: itsdangerous, click, MarkupSafe, Jinja2, Werkzeug, Flask
Successfully installed Flask-0.12 Jinja2-2.9.2 MarkupSafe-0.23 Werkzeug-0.11.15 click-6.7 itsdangerous-0.24
Package Flask is installed in /tmp/tmpdPNDIi
Validation Passed!

...

Show Metadata

Given a Wagon archive, this will print its metadata.

$ wagon show Flask-0.12-py27-none-linux_x86_64.wgn
...

{
    "archive_name": "Flask-0.12-py27-none-linux_x86_64.wgn",
    "build_server_os_properties": {
        "distribution": "antergos",
        "distribution_release": "archcode",
        "distribution_version": ""
    },
    "created_by_wagon_version": "0.6.0",
    "package_name": "Flask",
    "package_source": "flask",
    "package_version": "0.12",
    "supported_platform": "linux_x86_64",
    "supported_python_versions": [
        "py27"
    ],
    "wheels": [
        "MarkupSafe-0.23-cp27-cp27mu-linux_x86_64.whl",
        "Werkzeug-0.11.15-py2.py3-none-any.whl",
        "Jinja2-2.9.2-py2.py3-none-any.whl",
        "click-6.7-py2.py3-none-any.whl",
        "itsdangerous-0.24-cp27-none-any.whl",
        "Flask-0.12-py2.py3-none-any.whl"
    ]
}

...

Repair Wagon

auditwheel is a tool (currently under development) provided by pypa to "repair" wheels to support multiple linux distributions. Information on auditwheel is provided here.

Wagon provides a way to repair a wagon by iterating over its wheels and fixing all of them.

NOTE! The repair command is EXPERIMENTAL in Wagon. It isn't fully tested and relies on auditwheel, which is, in itself, somewhat experimental. Read https://www.python.org/dev/peps/pep-0513/ for more info.

For more information, see Linux Support for compiled wheels below.

The following example was executed on a container provided for wheel-auditing purposes which you can be run like so:

$ docker run -it -v `pwd`:/io quay.io/pypa/manylinux1_x86_64 /bin/bash
$ /opt/python/cp27-cp27m/bin/pip install wagon
...

$ /opt/python/cp27-cp27m/bin/wagon repair cloudify-4.0a10-py27-none-linux_x86_64.wgn -v
...

Repairing: cloudify-4.0a10-py27-none-linux_x86_64.wgn
Retrieving source...
Extracting tgz cloudify-4.0a10-py27-none-linux_x86_64.wgn to /tmp/tmpDZ4kNC...
Source is: /tmp/tmpDZ4kNC/cloudify
Repairing PyYAML-3.10-cp27-cp27m-linux_x86_64.whl
Previous filename tags: linux_x86_64
New filename tags: manylinux1_x86_64
Previous WHEEL info tags: cp27-cp27m-linux_x86_64
New WHEEL info tags: cp27-cp27m-manylinux1_x86_64
...
Generating Metadata...
Writing metadata to file: /tmp/tmpDZ4kNC/cloudify/package.json
Creating tgz archive: /cloudify-4.0a10-py27-none-manylinux1_x86_64.wgn...
Wagon created successfully at: /cloudify-4.0a10-py27-none-manylinux1_x86_64.wgn

...

Naming and Versioning

Source: PyPI

When providing a PyPI source, it can either be supplied as PACKAGE_NAME==PACKAGE_VERSION after which wagon then applies the correct name and version to the archive according to the two parameters; or PACKAGE_NAME, after which the PACKAGE_VERSION will be extracted from the downloaded wheel.

Source: Else

For local path and URL sources, the name and version are automatically extracted from the setup.py file.

NOTE: This means that when supplying a local path, you must supply a path to the root of where your setup.py file resides.

NOTE: If using a URL, it must be a URL to a tar.gz/zip file structured like a GitHub tar.gz/zip archive (e.g. https://github.com/cloudify-cosmo/cloudify-script-plugin/archive/master.tar.gz)

Metadata File and Wheels

A Metadata file is generated for the archive and looks somewhat like this:

{
    "archive_name": "cloudify_script_plugin-1.2-py27-none-linux_x86_64.wgn",
    "build_server_os_properties": {
        "distribution": "ubuntu",
        "distribution_release": "trusty",
        "distribution_version": "14.04"
    },
    "package_name": "cloudify-script-plugin",
    "package_source": "cloudify-script-plugin==1.2",
    "package_version": "1.2",
    "supported_platform": "any",
    "supported_python_versions": [
        "py26",
        "py27"
    ],
    "wheels": [
        "proxy_tools-0.1.0-py2-none-any.whl",
        "pyzmq-14.7.0-cp27-none-linux_x86_64.whl",
        "bottle-0.12.7-py2-none-any.whl",
        "networkx-1.8.1-py2-none-any.whl",
        "requests-2.5.1-py2.py3-none-any.whl",
        "PyYAML-3.10-cp27-none-linux_x86_64.whl",
        "pika-0.9.13-py2-none-any.whl",
        "jsonschema-2.3.0-py2.py3-none-any.whl",
        "cloudify_dsl_parser-3.2-py2-none-any.whl",
        "cloudify_rest_client-3.2-py2-none-any.whl",
        "cloudify_script_plugin-1.2-py2-none-any.whl"
    ]
}
  • The wheels to be installed reside in the zip file under 'wheels/*.whl'.
  • The Metadata file resides in the archive file under 'package.json'.
  • The installer uses the metadata file to check that the platform fits the machine the package is being installed on.
  • OS Properties only appear when creating compiled Linux packages (see Linux Distributions section). In case of a non-linux platform (e.g. win32, any), null values will be supplied for OS properties.
  • The distribution identification is done using platform.linux_distribution, which is deprecated and will be removed in Python 3.7. https://github.com/nir0s/distro is a successor of that functionality and can be installed by running pip install wagon[dist]. We currently use distro only if it is instsalled. In later versions of wagon, we will stop using platform.linux_distribution altogether.

Archive naming convention and Platform

The archive is named according to the Wheel naming convention described in PEP0491.

Example Output Archive: cloudify_aws_plugin-1.4.3-py27-none-any.wgn

  • {python tag}: The Python version is set by the Python running the packaging process. That means that while a package might run on both py27 and py33 (for example), since the packaging process took place using Python 2.7, only py27 will be appended to the name. A user can also explicitly provide the supported Python versions for the package via the pyver flag.
  • {platform tag}: Normally, the platform (e.g. linux_x86_64, win32) is set for each specific wheel. To know which platform the package with its dependencies can be installed on, all wheels are checked. If a specific wheel has a platform property other than any, that platform will be used as the platform of the package. Of course, we assume that there can't be wheels downloaded or created on a specific machine platform that belongs to two different platforms.
  • {abi tag}: Note that the ABI tag is currently ignored and will always be none. This might be changed in the future to support providing an ABI tag.

Linux Support for compiled wheels

Example Output Archive: cloudify_fabric_plugin-1.2.1-py27-none-linux_x86_64.wgn

Wheels which require compilation of C-extensions and are compiled on Linux are not uploaded to PyPI due to variations between compilation environments on different distributions and links to varying system libraries.

To overcome that (partially), when running Wagon on Linux and the package requires compilation, the metadata provides the distribution, version and release name of the OS that the archive was created on (via platform.linux_distribution() and https://github.com/nir0s/distro). Statistically speaking, this should provide the user with the information they need to know which OS the package can be installed on. Obviously, this is not true for cases where non-generic compilation methods are used on the creating OS but otherwise should work, and should specifically always work when both compilation environment and Python version are similar on the creating and installing OS - which, we generally recommend.

What this practically means, is that in most cases using the metadata to compare the distro, distro version, and the Python version under which the package is installed would allow a user to use Wagon rather safely. Of course, Wagon provides no guarantee whatsoever as to whether this will actually work or not and users must test their archives.

That being said, Wagon is completely safe for creating and installing Pure-Python package archives for any platform, and, due to the nature of Wheels, packages compiled for OS X or Windows on corresponding architectures.

Python API

Wagon provides an easy to use API. You can pass a verbose True/False flag to each of these functions.

Create

import wagon

source = 'flask==0.10.1'

wagon.set_verbose(True)

archive_path = wagon.create(
    source,
    requirement_files=None,
    force=False,
    keep_wheels=False,
    archive_destination_dir='.',
    python_versions=None,
    validate_archive=False,
    wheel_args='',
    archive_format='tar.gz')

Install

import wagon

source = 'http://my-wagons.com/Flask-0.10.1-py27-none-linux_x86_64.wgn'

wagon.install(
    source,
    venv=None,
    requirement_files=None,
    upgrade=False,
    ignore_platform=False,
    install_args='')

Validate

import wagon

source = 'http://my-wagons.com/Flask-0.10.1-py27-none-linux_x86_64.wgn'

result = wagon.validate(source=source)  # True if validation successful, else False

Showmeta

import wagon

source = 'http://my-wagons.com/Flask-0.10.1-py27-none-linux_x86_64.wgn'

metadata = wagon.show(source=source)
print(metadata)

Repair

import wagon

source = 'http://my-wagons.com/Flask-0.10.1-py27-none-linux_x86_64.wgn'
repaired_archive_path = wagon.repair(source=source, validate=True)

Testing

NOTE: Running the tests require an internet connection NOTE: Some tests check if the CI env var is set. If not, they will not run.

git clone [email protected]:cloudify-cosmo/wagon.git
cd wagon
pip install tox
tox

Contributions..

..are always welcome. We're looking to:

  • Provide the most statistically robust way of identification and installation of Linux compiled Wheels.

More Repositories

1

cloudify-manager

Cloudify's manager related code
Python
141
star
2

cloudify-cli

Cloudify's CLI
Python
42
star
3

cloudify-stage

Cloudify's New UI Framework
TypeScript
38
star
4

packman

a packaging framework.. and more!
Python
32
star
5

cloudify-manager-blueprints

Python
28
star
6

surch

Search Git Organizations or Repositories for strings
Python
27
star
7

cloudify-packager

Cloudify Resource Creation Configuration
Python
26
star
8

getcloudify.org

The getcloudify.org Web Site
HTML
26
star
9

cloudify-openstack-plugin

Cloudify OpenStack Plugin
Python
20
star
10

cloudify-nodecellar-example

A sample Cloudify 3 application consisted of a nodejs server and mongodb database.
Shell
19
star
11

cloudify-dsl-parser

Cloudify DSL Parser
Python
16
star
12

cloudify-manager-install

A new, simpler, way to install a Cloudify manager
Python
14
star
13

cloudify-dev

Contains development guides and scripts.
Python
14
star
14

cloudify-aws-plugin

A Cloudify Plugin that provisions resources in Amazon Web Services
Python
11
star
15

docs.getcloudify.org

Documentation website for Cloudify Platform
JavaScript
11
star
16

cloudify-kubernetes-plugin

Cloudify plugin for packaging Kubernetes microservices in Cloudify blueprints.
Python
10
star
17

cloudify-vsphere-plugin

Cloudify vSphere Plugin
Python
10
star
18

repex

sed on steroids
Python
10
star
19

cloudify-agent

Cloudify's Agent module
Python
10
star
20

cloudify-fabric-plugin

For running fabric tasks or commands from the manager
Python
10
star
21

cloudhealth-client

A REST Client for Cloudhealth
Python
10
star
22

cloudify-plugins-common

Cloudify Resources for Cloudify Plugins
Python
10
star
23

cloudify-hello-world-example

Cloudify Examples
PowerShell
9
star
24

cloudify-common

Merging the following repos: cloudify-dsl-parser, cloudify-rest-client, cloudify-script-plugin, cloudify-plugins-common
Python
8
star
25

cloudify-system-tests

Cloudify System Tests
Python
7
star
26

cloudify-rest-client

Cloudify REST Client
Python
7
star
27

cloudify-ansible-plugin

Runs ansible inside of the Cloudify Manager
Python
7
star
28

appveyor-utils

Windows Testing Utils
PowerShell
6
star
29

cloudify-script-plugin

A Cloudify plugin for running scripts
Python
6
star
30

cloudify-plugin-template

Cloudify Templates for Cloudify Plugins
Python
6
star
31

cloudify-azure-plugin

Azure plugin for Cloudify
Python
5
star
32

cloudify-rest-docs

Documentation of the Cloudify REST API in Slate style
CSS
5
star
33

cloudify-netconf-plugin

Cloudify plugin for serializing TOSCA node templates to netconf configuration.
Python
5
star
34

cloudify-gcp-plugin

A Cloudify Plugin that provisions resources in Google Cloud Platform
Python
5
star
35

cloudify-cloudstack-plugin

Cloudify plugin for CloudStack
Python
5
star
36

flask-securest

REST Security implementation for REST Gateway
Python
5
star
37

yttc

Converts yang modules into TOSCA node types.
Python
4
star
38

cloudify-image-bakery

Bakes Cloudify related images
Python
4
star
39

backstage-cloudify-plugin

TypeScript
4
star
40

cloudify-helm

Cloudify Helm Charts
Smarty
4
star
41

cloudify-versions

Contains a reference to the versions of all Cloudify packages requires for our builds
Shell
4
star
42

cloudify-amqp-influxdb

A Cloudify specific transport to consume events from RMQ and push them to InfluxDB
Python
4
star
43

cloudify-installer

a node tool to easily install cloudify and other goods
JavaScript
3
star
44

cloudify-interactive-tutorial

JavaScript
3
star
45

cloudify-puppet-plugin

Cloudify plugin for the puppet configuration system
Python
3
star
46

hubot-flowdock-irc-relay

A Hubot script that provides a 2-way sync between an IRC channel and a Flowdock flow
JavaScript
3
star
47

node-replace-env-in-json-file

node module that simply replaces placeholders with environment variables values into a json file
JavaScript
3
star
48

cloudify-diamond-plugin

Cloudify diamond monitoring plugin
Python
3
star
49

python-dependency-verifier

A tool to make sure that all dependencies in a python project are version locked and up to date
Python
2
star
50

cloudify-java-rest-client

Java
2
star
51

cloudify-nsx-plugin

Cloudify Network Virtualization with VMware (NSX) plugin
Python
2
star
52

cloudify-wagon-build-containers

Containers for Building Wagons
Dockerfile
2
star
53

tattle

Query your GitHub branches and their related JIRA issues
Python
2
star
54

get-cloudify.py

Cloudify's Installation Script
Python
2
star
55

cfy-lint

Linter for Cloudify Blueprints
Python
2
star
56

docl

Python
2
star
57

cloudify-packager-centos-DEPRECATED

cloudify packaging for centos manager
Python
2
star
58

cloudify-diamond-snmp-extension

An extension to the diamond plugin that adds support for monitoring SNMP metrics on remote machines
Python
2
star
59

cloudify-nexus-plugin

Cloudify plugin for the Nexus repository (http://www.sonatype.com/nexus)
Python
2
star
60

Cloudify-UI-Widget-boilerplate

JavaScript
2
star
61

cloudify-dsl-parser-cli

a cli wrapper for cloudify-dsl-parser
Python
2
star
62

cloudify-docker-plugin

A Cloudify plugin for deploying Docker containers
Python
2
star
63

cloudify-starlingx-plugin

Python
2
star
64

aria-extension-cloudify

Python
2
star
65

vagrant-automation-machines

a boiler plate for automations relying on vagrant. simply clone and add files to "synced_folder" and a provision script..
Ruby
2
star
66

cloudify-jboss-plugin

Cloudify plugin for managing the JBoss application server
Python
2
star
67

cloudify-build-dashboard

Cloudify's Build Dashboard
JavaScript
2
star
68

cloudify-cli-fabric-tasks

A repository for all cli fabric tasks
Python
2
star
69

Vaultdroid

Simple API implementations for Vault, in Android
Java
2
star
70

deppy

Deppy is a dependencies management tool for projects/packages It is used to seek for updates for your project/package dependencies, or to show the dependencies tree for an installed package, with details about each package in the dependencies tree, including versions conflicts, and versions available according to the requirements of the main package and its dependencies.
Python
2
star
71

cloudify-telegraf-plugin

Python
1
star
72

cloudify-rest-api-mock

Cloudify REST API Mock
JavaScript
1
star
73

cloudify-plugin-installer-plugin

Cloudify's Plugin Installer module
Python
1
star
74

cloudify-usage

JavaScript
1
star
75

cloudify-system-test-suites

Python
1
star
76

cloudify-vcloud-plugin

Python
1
star
77

cloudify-ui-selenium-tests-nodejs

selenium tests for cloudify ui with nodejs
JavaScript
1
star
78

cloff

Cloudify Offline
Python
1
star
79

cloudify-logstash-plugin

Logstash plugin for Cloudify3
Python
1
star
80

slack-invites

JavaScript
1
star
81

version-tool

Cloudify's version upgrade tool
Python
1
star
82

cloudify-openstack-provider

Cloudify OpenStack Provider
Python
1
star
83

cloudify-digitalocean-plugin

Cloudify plugin for the digitalocean IaaS cloud
Python
1
star
84

cloudify-agent-installer-plugin

Cloudify's Agent Installer module
Python
1
star
85

travis-utils

Python
1
star
86

cloudify-netrounds-plugin

VNF for testing networks by Netrounds.
Python
1
star
87

cloudify-host-pool-service

host-pool service, used with the Cloudify host-pool plugin
Python
1
star
88

yo-ci

A python travis client built for integration
Python
1
star
89

depypi

A Tool for deploying Python packages to PyPI with multiple user support and a Pythonic API
Python
1
star
90

cloudify-dsl-schema

Cloudify DSL JSON schema
Python
1
star
91

cloudify-filebeat-plugin

Python
1
star
92

cloudify-nagiosrest-plugin

Python
1
star
93

cloudify-cloudstack-provider

Cloudify provider for Apache CloudStack
Python
1
star
94

cloudify-libcloud-plugin

Cloudify Libcloud plugin
Python
1
star
95

cloudify-ldap-plugin

Cloudify security plugin for authentication against LDAP
Python
1
star
96

cloudify-hubot

Our very own Hubot
CoffeeScript
1
star
97

cloudify-libcloud-provider

Cloudify Libcloud provider
Python
1
star
98

influx-v0.8

JavaScript
1
star
99

cloudify-bash-plugin

Cloudify Bash Plugin
Python
1
star
100

cloudify-cli-packager

Cloudify CLI Package Generator
Inno Setup
1
star