2012-10-03 19:57:36 +00:00
Developing Salt
===============
2013-02-01 22:36:41 +00:00
There is a great need for contributions to salt and patches are welcome! The goal
here is to make contributions clear, make sure there is a trail for where the code
has come from, and most importantly, to give credit where credit is due!
2012-10-03 19:57:36 +00:00
2013-02-01 22:36:41 +00:00
There are a number of ways to contribute to salt development.
2012-10-03 19:57:36 +00:00
2013-02-01 20:31:40 +00:00
2013-07-03 02:23:44 +00:00
Sending a GitHub pull request
2013-02-01 22:36:41 +00:00
-----------------------------
2012-10-03 19:57:36 +00:00
2013-07-03 02:23:44 +00:00
This is the preferred method for contributions. Simply create a GitHub
2013-02-01 22:36:41 +00:00
fork, commit changes to the fork, and then open up a pull request.
2013-02-01 20:31:40 +00:00
2013-02-01 21:03:44 +00:00
The following is an example (from `Open Comparison Contributing Docs`_ )
of an efficient workflow for forking, cloning, branching, committing, and
2013-07-03 02:23:44 +00:00
sending a pull request for a GitHub repository.
2013-02-01 20:31:40 +00:00
2013-07-03 02:23:44 +00:00
First, make a local clone of your GitHub fork of the salt GitHub repo and make
2013-06-14 02:05:19 +00:00
edits and changes locally.
2013-02-08 07:10:41 +00:00
2013-08-11 02:55:51 +00:00
Then, create a new branch on your clone by entering the following commands:
.. code-block :: bash
2013-02-01 20:31:40 +00:00
2013-02-01 21:03:44 +00:00
git checkout -b fixed-broken-thing
2013-02-08 07:10:41 +00:00
2013-02-01 21:03:44 +00:00
Switched to a new branch 'fixed-broken-thing'
2013-02-01 22:36:41 +00:00
Choose a name for your branch that describes its purpose.
2013-02-01 21:03:44 +00:00
2013-08-11 02:55:51 +00:00
Now commit your changes to this new branch with the following command:
.. code-block :: bash
git commit -am 'description of my fixes for the broken thing'
.. note ::
2013-02-08 07:10:41 +00:00
2013-08-11 02:55:51 +00:00
Using `` git commit -am `` , followed by a quoted string, both stages and
commits all modified files in a single command. Depending on the nature of
your changes, you may wish to stage and commit them separately. Also, note
that if you wish to add newly-tracked files as part of your commit, they
will not be caught using `` git commit -am `` and will need to be added using
`` git add `` before committing.
2013-02-08 07:10:41 +00:00
2013-08-11 02:55:51 +00:00
Push your locally-committed changes back up to GitHub:
.. code-block :: bash
2013-02-01 21:03:44 +00:00
2013-02-08 06:45:28 +00:00
git push --set-upstream origin fixed-broken-thing
2013-02-01 21:03:44 +00:00
2013-02-08 07:10:41 +00:00
Now go look at your fork of the salt repo on the GitHub website. The new
branch will now be listed under the "Source" tab where it says "Switch Branches".
Select the new branch from this list, and then click the "Pull request" button.
2013-02-01 22:36:41 +00:00
2013-08-11 02:55:51 +00:00
Put in a descriptive comment, and include links to any project issues related
to the pull request.
2013-02-01 22:36:41 +00:00
2013-08-11 02:55:51 +00:00
The repo managers will be notified of your pull request and it will be
reviewed. If a reviewer asks for changes, just make the changes locally in the
same local feature branch, push them to GitHub, then add a comment to the
2013-02-01 21:03:44 +00:00
discussion section of the pull request.
2013-08-29 10:52:38 +00:00
.. _enable-travis-ci:
2013-02-01 21:18:40 +00:00
.. note :: Travis-CI
2013-02-01 20:31:40 +00:00
2013-08-11 02:55:51 +00:00
To make reviewing pull requests easier for the maintainers, please enable
Travis-CI on your fork. Salt is already configured, so simply follow the
first 2 steps on the Travis-CI `Getting Started Doc`_ .
2013-01-03 18:51:44 +00:00
.. _`Getting Started Doc`: http://about.travis-ci.org/docs/user/getting-started
2012-10-03 19:57:36 +00:00
2013-02-01 22:36:41 +00:00
Keeping Salt Forks in Sync
--------------------------
2013-02-01 21:03:44 +00:00
2013-08-11 02:55:51 +00:00
Salt is advancing quickly. It is therefore critical to pull upstream changes
from master into forks on a regular basis. Nothing is worse than putting in a
days of hard work into a pull request only to have it rejected because it has
diverged too far from master.
To pull in upstream changes:
2013-02-01 21:03:44 +00:00
2013-08-11 02:55:51 +00:00
.. code-block :: bash
2013-02-01 21:03:44 +00:00
# For ssh github
git remote add upstream git@github.com:saltstack/salt.git
git fetch upstream
# For https github
git remote add upstream https://github.com/saltstack/salt.git
git fetch upstream
2013-08-11 02:55:51 +00:00
To check the log to be sure that you actually want the changes, run the
following before merging:
.. code-block :: bash
2013-02-01 21:03:44 +00:00
git log upstream/develop
2013-08-11 02:55:51 +00:00
Then to accept the changes and merge into the current branch:
.. code-block :: bash
2013-02-01 21:03:44 +00:00
git merge upstream/develop
2013-08-11 02:55:51 +00:00
For more info, see `GitHub Fork a Repo Guide`_ or `Open Comparison Contributing
Docs`_
2013-02-01 21:03:44 +00:00
2013-07-03 02:23:44 +00:00
.. _`GitHub Fork a Repo Guide`: http://help.github.com/fork-a-repo/
2013-02-01 21:03:44 +00:00
.. _`Open Comparison Contributing Docs`: http://opencomparison.readthedocs.org/en/latest/contributing.html
2012-10-03 19:57:36 +00:00
Posting patches to the mailing list
-----------------------------------
2013-08-11 02:55:51 +00:00
Patches will also be accepted by email. Format patches using `git
format-patch`_ and send them to the Salt users mailing list. The contributor
will then get credit for the patch, and the Salt community will have an archive
of the patch and a place for discussion.
2012-10-03 19:57:36 +00:00
2013-02-01 22:20:22 +00:00
.. _`git format-patch`: http://www.kernel.org/pub/software/scm/git/docs/git-format-patch.html
2012-10-03 19:57:36 +00:00
Installing Salt for development
-------------------------------
2013-08-11 02:55:51 +00:00
Clone the repository using:
.. code-block :: bash
2012-10-03 19:57:36 +00:00
git clone https://github.com/saltstack/salt
2013-01-24 06:34:05 +00:00
2013-01-17 00:42:32 +00:00
.. note :: tags
Just cloning the repository is enough to work with Salt and make
2013-02-06 18:37:20 +00:00
contributions. However, fetching additional tags from git is required to
have Salt report the correct version for itself. To do this, first
2013-08-11 02:55:51 +00:00
add the git repository as an upstream source:
.. code-block :: bash
2013-01-17 00:42:32 +00:00
git remote add upstream http://github.com/saltstack/salt
2013-08-11 02:55:51 +00:00
Fetching tags is done with the git 'fetch' utility:
.. code-block :: bash
2013-01-17 00:42:32 +00:00
git fetch --tags upstream
2012-10-03 19:57:36 +00:00
2013-08-11 02:55:51 +00:00
Create a new `virtualenv`_ :
.. code-block :: bash
2012-10-03 19:57:36 +00:00
virtualenv /path/to/your/virtualenv
2012-12-22 00:23:33 +00:00
.. _`virtualenv`: http://pypi.python.org/pypi/virtualenv
2012-12-21 22:00:50 +00:00
On Arch Linux, where Python 3 is the default installation of Python, use the
`` virtualenv2 `` command instead of `` virtualenv `` .
2012-10-03 19:57:36 +00:00
2013-02-06 18:37:20 +00:00
.. note :: Using system Python modules in the virtualenv
2012-12-21 22:00:50 +00:00
2013-02-06 18:37:20 +00:00
To use already-installed python modules in virtualenv (instead of having pip
download and compile new ones), run `` virtualenv --system-site-packages ``
Using this method eliminates the requirement to install the salt dependencies
again, although it does assume that the listed modules are all installed in the
system PYTHONPATH at the time of virtualenv creation.
2012-10-03 19:57:36 +00:00
2013-08-11 02:55:51 +00:00
Activate the virtualenv:
.. code-block :: bash
2012-10-03 19:57:36 +00:00
source /path/to/your/virtualenv/bin/activate
2013-08-11 02:55:51 +00:00
Install Salt (and dependencies) into the virtualenv:
.. code-block :: bash
2012-10-03 19:57:36 +00:00
2012-12-27 02:44:15 +00:00
pip install M2Crypto # Don't install on Debian/Ubuntu (see below)
pip install pyzmq PyYAML pycrypto msgpack-python jinja2 psutil
pip install -e ./salt # the path to the salt git clone from above
2012-10-03 19:57:36 +00:00
.. note :: Installing M2Crypto
2013-02-06 18:37:20 +00:00
`` swig `` and `` libssl-dev `` are required to build M2Crypto. To fix
the error `` command 'swig' failed with exit status 1 `` while installing M2Crypto,
2013-08-11 02:55:51 +00:00
try installing it with the following command:
.. code-block :: bash
2012-10-03 19:57:36 +00:00
env SWIG_FEATURES="-cpperraswarn -includeall -D__`uname -m`__ -I/usr/include/openssl" pip install M2Crypto
Debian and Ubuntu systems have modified openssl libraries and mandate that
a patched version of M2Crypto be installed. This means that M2Crypto
2013-08-11 02:55:51 +00:00
needs to be installed via apt:
.. code-block :: bash
2012-10-03 19:57:36 +00:00
apt-get install python-m2crypto
2013-02-06 18:37:20 +00:00
This also means that pulling in the M2Crypto installed using apt requires using
`` --system-site-packages `` when creating the virtualenv.
2012-12-22 00:23:33 +00:00
2013-03-24 16:51:51 +00:00
.. note :: Installing psutil
Python header files are required to build this module, otherwise the pip
install will fail. If your distribution separates binaries and headers into
separate packages, make sure that you have the headers installed. In most
Linux distributions which split the headers into their own package, this
can be done by installing the `` python-dev `` or `` python-devel `` package.
For other platforms, the package will likely be similarly named.
2012-12-22 00:23:33 +00:00
.. note :: Important note for those developing using RedHat variants
2013-02-06 18:37:20 +00:00
For developers using a RedHat variant, be advised that the package
2012-12-22 00:23:33 +00:00
provider for newer Redhat-based systems (:doc:`yumpkg.py
<../ref/modules/all/salt.modules.yumpkg>`) relies on RedHat's python
interface for yum. The variants that use this module to provide package
support include the following:
* `RHEL`_ and `CentOS`_ releases 6 and later
* `Fedora Linux`_ releases 11 and later
* `Amazon Linux`_
2013-02-06 18:37:20 +00:00
Developers using one of these systems should create the salt virtualenv using the
`` --system-site-packages `` option to ensure that the correct modules are available.
2012-12-22 00:23:33 +00:00
.. _`RHEL`: https://www.redhat.com/products/enterprise-linux/
.. _`CentOS`: http://centos.org/
.. _`Fedora Linux`: http://fedoraproject.org/
.. _`Amazon Linux`: https://aws.amazon.com/amazon-linux-ami/
2013-02-02 08:06:40 +00:00
.. note :: Installing dependencies on OS X.
2013-02-06 18:37:20 +00:00
You can install needed dependencies on OS X using homebrew or macports.
2013-02-07 23:58:26 +00:00
See :doc: `OS X Installation </topics/installation/osx>`
2012-12-22 00:23:33 +00:00
2012-10-03 19:57:36 +00:00
Running a self-contained development version
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
During development it is easiest to be able to run the Salt master and minion
that are installed in the virtualenv you created above, and also to have all
the configuration, log, and cache files contained in the virtualenv as well.
2013-08-11 02:55:51 +00:00
Copy the master and minion config files into your virtualenv:
.. code-block :: bash
2012-10-03 19:57:36 +00:00
mkdir -p /path/to/your/virtualenv/etc/salt
2012-12-16 08:17:44 +00:00
cp ./salt/conf/master /path/to/your/virtualenv/etc/salt/master
cp ./salt/conf/minion /path/to/your/virtualenv/etc/salt/minion
2012-10-03 19:57:36 +00:00
Edit the master config file:
1. Uncomment and change the `` user: root `` value to your own user.
2. Uncomment and change the `` root_dir: / `` value to point to
`` /path/to/your/virtualenv `` .
2012-12-27 17:51:56 +00:00
3. If you are running version 0.11.1 or older, uncomment and change the
`` pidfile: /var/run/salt-master.pid `` value to point to
2012-12-28 05:32:48 +00:00
`` /path/to/your/virtualenv/salt-master.pid `` .
2012-12-16 08:17:44 +00:00
4. If you are also running a non-development version of Salt you will have to
2012-10-03 19:57:36 +00:00
change the `` publish_port `` and `` ret_port `` values as well.
Edit the minion config file:
1. Repeat the edits you made in the master config for the `` user `` and
`` root_dir `` values as well as any port changes.
2012-12-27 17:51:56 +00:00
2. If you are running version 0.11.1 or older, uncomment and change the
`` pidfile: /var/run/salt-minion.pid `` value to point to
2012-12-28 05:32:48 +00:00
`` /path/to/your/virtualenv/salt-minion.pid `` .
2012-12-16 08:17:44 +00:00
3. Uncomment and change the `` master: salt `` value to point at `` localhost `` .
4. Uncomment and change the `` id: `` value to something descriptive like
2012-10-03 19:57:36 +00:00
"saltdev". This isn't strictly necessary but it will serve as a reminder of
which Salt installation you are working with.
.. note :: Using `salt-call` with a :doc: `Standalone Minion </topics/tutorials/standalone_minion>`
If you plan to run `salt-call` with this self-contained development
environment in a masterless setup, you should invoke `salt-call` with
`` -c /path/to/your/virtualenv/etc/salt `` so that salt can find the minion
2012-12-16 07:13:32 +00:00
config file. Without the `` -c `` option, Salt finds its config files in
`/etc/salt` .
2012-10-03 19:57:36 +00:00
2013-05-01 23:06:17 +00:00
Start the master and minion, accept the minion's key, and verify your local Salt
2013-08-11 02:55:51 +00:00
installation is working:
.. code-block :: bash
2012-10-03 19:57:36 +00:00
2012-12-16 07:03:47 +00:00
cd /path/to/your/virtualenv
2012-12-16 08:17:44 +00:00
salt-master -c ./etc/salt -d
salt-minion -c ./etc/salt -d
2012-10-03 19:57:36 +00:00
salt-key -c ./etc/salt -L
salt-key -c ./etc/salt -A
salt -c ./etc/salt '*' test.ping
2012-12-16 18:57:00 +00:00
Running the master and minion in debug mode can be helpful when developing. To
do this, add `` -l debug `` to the calls to `` salt-master `` and `` salt-minion `` .
If you would like to log to the console instead of to the log file, remove the
`` -d `` .
2012-12-16 06:45:50 +00:00
2012-12-27 02:44:15 +00:00
Once the minion starts, you may see an error like the following::
zmq.core.error.ZMQError: ipc path "/path/to/your/virtualenv/var/run/salt/minion/minion_event_7824dcbcfd7a8f6755939af70b96249f_pub.ipc" is longer than 107 characters (sizeof(sockaddr_un.sun_path)).
This means the the path to the socket the minion is using is too long. This is
a system limitation, so the only workaround is to reduce the length of this
path. This can be done in a couple different ways:
1. Create your virtualenv in a path that is short enough.
2. Edit the :conf_minion:`sock_dir` minion config variable and reduce its
length. Remember that this path is relative to the value you set in
:conf_minion:`root_dir` .
`` NOTE: `` The socket path is limited to 107 characters on Solaris and Linux,
and 103 characters on BSD-based systems.
2013-02-06 18:37:20 +00:00
.. note :: File descriptor limits
2012-12-27 02:44:15 +00:00
2013-08-11 02:55:51 +00:00
Ensure that the system open file limit is raised to at least 2047:
.. code-block :: bash
2012-10-03 19:57:36 +00:00
2013-02-06 18:37:20 +00:00
# check your current limit
ulimit -n
2012-10-03 19:57:36 +00:00
2013-02-06 18:37:20 +00:00
# raise the limit. persists only until reboot
# use 'limit descriptors 2047' for c-shell
ulimit -n 2047
2012-10-03 19:57:36 +00:00
2013-08-11 02:55:51 +00:00
To set file descriptors on OSX, refer to the :doc:`OS X Installation
</topics/installation/osx>` instructions.
2012-10-03 19:57:36 +00:00
2013-04-07 22:05:31 +00:00
Using easy_install to Install Salt
----------------------------------
If you are installing using `` easy_install `` , you will need to define a
:strong: `USE_SETUPTOOLS` environment variable, otherwise dependencies will not
2013-08-11 02:55:51 +00:00
be installed:
.. code-block :: bash
2013-04-07 22:05:31 +00:00
2013-08-11 02:55:51 +00:00
USE_SETUPTOOLS=1 easy_install salt
2013-04-07 22:05:31 +00:00
2012-10-03 19:57:36 +00:00
Running the tests
~~~~~~~~~~~~~~~~~
2013-08-11 02:55:51 +00:00
You will need `` mock `` to run the tests:
.. code-block :: bash
2012-10-03 19:57:36 +00:00
pip install mock
2013-08-11 02:55:51 +00:00
If you are on Python < 2.7 then you will also need unittest2:
.. code-block :: bash
2012-10-03 19:57:36 +00:00
pip install unittest2
2013-10-04 18:06:43 +00:00
.. note ::
In Salt 0.17, testing libraries were migrated into their own repo. To install them:
.. code-block :: bash
pip install git+https://github.com/saltstack/salt-testing.git#egg=SaltTesting
Failure to install SaltTesting will result in import errors similar to the following:
.. code-block :: bash
ImportError: No module named salttesting
2013-08-11 02:55:51 +00:00
Finally you use setup.py to run the tests with the following command:
.. code-block :: bash
2012-10-03 19:57:36 +00:00
./setup.py test
2013-08-11 02:55:51 +00:00
For greater control while running the tests, please try:
.. code-block :: bash
2012-10-03 19:57:36 +00:00
2012-12-16 07:13:32 +00:00
./tests/runtests.py -h
2013-01-23 11:09:36 +00:00
2013-07-20 17:19:50 +00:00
Editing and previewing the documentation
----------------------------------------
2013-01-23 11:09:36 +00:00
2013-06-14 02:05:19 +00:00
You need `` sphinx-build `` command to build the docs. In Debian/Ubuntu this is
provided in the `` python-sphinx `` package. Sphinx can also be installed
2013-08-11 02:55:51 +00:00
to a virtualenv using pip:
.. code-block :: bash
2013-01-23 11:09:36 +00:00
pip install Sphinx
2013-08-11 02:55:51 +00:00
Change to salt documentation directory, then:
.. code-block :: bash
2013-01-23 11:09:36 +00:00
cd doc; make html
2013-06-14 01:29:17 +00:00
- This will build the HTML docs. Run `` make `` without any arguments to see the
available make targets, which include :strong: `html` , :strong: `man` , and
:strong: `text` .
2013-06-14 02:05:19 +00:00
- The docs then are built within the :strong: `docs/_build/` folder. To update
the docs after making changes, run `` make `` again.
2013-01-23 11:09:36 +00:00
- The docs use `reStructuredText <http://sphinx-doc.org/rest.html> `_ for markup.
See a live demo at http://rst.ninjs.org/.
- The help information on each module or state is culled from the python code
that runs for that piece. Find them in `` salt/modules/ `` or `` salt/states/ `` .
2013-06-14 01:29:17 +00:00
2013-06-14 02:05:19 +00:00
- To build the docs on Arch Linux, the :strong: `python2-sphinx` package is
required. Additionally, it is necessary to tell :strong: `make` where to find
2013-08-11 02:55:51 +00:00
the proper :strong: `sphinx-build` binary, like so:
.. code-block :: bash
2013-01-23 11:09:36 +00:00
make SPHINXBUILD=sphinx-build2 html
2013-06-14 01:29:17 +00:00
2013-06-14 02:05:19 +00:00
- To build the docs on RHEL/CentOS 6, the :strong: `python-sphinx10` package
2013-08-11 02:55:51 +00:00
must be installed from EPEL, and the following make command must be used:
.. code-block :: bash
2013-06-14 01:29:17 +00:00
make SPHINXBUILD=sphinx-1.0-build html