Contributing

Contribute to VMTP

Below are a simplified version of the workflow to work on VMTP. For complete instructions, you have to follow the Developer’s Guide in OpenStack official documents. Refer to below section for links.

Start working

Before starting, a GitHub/StackForge respository based installation must be done. Refer here for detailed documentation.

  1. From the root of your workspace, check out a new branch to work on:

    $ git checkout -b <TOPIC-BRANCH>
    
  2. Happy working on your code for features or bugfixes;

Before Commit

There are some criteria that are enforced to commit to VMTP. Below commands will perform the check and make sure your code complys with it.

  1. PEP 8:

    $ tox -epep8
    

Note

The first run usually takes longer, as tox will create a new virtual environment and download all dependencies. Once that is the done, further run will be very fast.

  1. Run the test suite:

    $ tox -epython27
    
  2. If you made a documentation change (i.e. changes to .rst files), make sure the documentation is built as you expected:

    $ cd <vmtp-ws-root>/doc
    $ make html
    

Once finished, the documentation in HTML format will be ready at <vmtp-ws-root>/doc/build/html.

Submit Review

  1. Commit the code:

    $ git commit -a
    

Note

For a feature commit, please supply a clear commit message indicating what the feature is; for a bugfix commit, please also containing a launchpad link to the bug you are working on.

  1. Submit the review:

    $ git review <TOPIC-BRANCH>
    

The members in the VMTP team will get notified once the Jenkin verification is passed. So watch your email from the review site, as it will contain the updates for your submission.

  1. If the code is approved with a +2 review, Gerrit will automatically merge your code.

File Bugs

Bugs should be filed on Launchpad, not GitHub:

Build the VMTP Docker Image

The VMTP Docker images are published in the DockerHub berrypatch repository: https://hub.docker.com/r/berrypatch/vmtp/

Two files are used to build the Docker image: Dockerfile and .dockerignore. The former provides all the build instructions while the latter provides the list of files/directories that should not be copied to the Docker image.

In order to make the Docker image clean, remove all auto generated files from the root of your workspace first. It is strongly recommeneded to simply pull a new one from GitHub/OPenStack. Specify the image name and the tag, and feed them to docker build. The tag should be an existing git tag for the vmtp repository.

To build the image with tag “2.0.0” and “latest”:

$ cd <vmtp-ws-root>
$ sudo docker build --tag=berrypatch/vmtp:2.0.0 .
$ sudo docker build --tag=berrypatch/vmtp:latest .

The images should be available for use:

$ sudo docker images
REPOSITORY          TAG                 IMAGE ID            CREATED             VIRTUAL SIZE
berrypatch/vmtp     2.0.0               9f08056496d7        27 hours ago        494.6 MB
berrypatch/vmtp     latest              9f08056496d7        27 hours ago        494.6 MB

For exchanging purposes, the image could be saved to a tar archive. You can distribute the VMTP Docker image among your servers easily with this feature:

$ sudo docker save -o <IMAGE_FILE> <IMAGE_ID>

To publish you need to be a member of the berrypatch vmtp team. After the login (requires your DockerHub username and password), push the appropriate version to berrypatch:

$ sudo docker login
$ sudo docker push berrypatch/vmtp:2.0.0
$ sudo docker push berrypatch/vmtp:latest

Developer’s Guide of OpenStack

If you would like to contribute to the development of OpenStack, you must follow the steps in this page:

Once those steps have been completed, changes to OpenStack should be submitted for review via the Gerrit tool, following the workflow documented at:

Pull requests submitted through GitHub will be ignored.