Setting up a Phalanx development environment#

The Phalanx repository uses pre-commit to lint source files and generate Helm chart documentation with helm-docs. It also has a command-line tool, phalanx, which aids in maintaining Phalanx applications and environments.

If you are contributing to Phalanx as either a developer or an environment administrator, you should enable these tools in your local environment to ensure that you can use the command-line tool as intended, that your changes are clean, and that the Helm chart documentation is kept up-to-date.

Important

Pre-commit also runs in GitHub Actions to ensure that contributions conform to the linters. If your pull request’s “lint” step fails, it’s likely because pre-commit wasn’t enabled locally. This page shows you how to fix that.

Clone phalanx#

Start by cloning Phalanx into your own editing environment. You will likely need to make changes to Phalanx and create pull requests, so you need to create a branch or fork of the repository to which you can push changes.

Members of the lsst-sqre/phalanx repository on GitHub can clone the repository directly and create a ticket branch, per the Data Management workflow guide.

Otherwise, fork lsst-sqre/phalanx following GitHub’s guide.

Create a Python virtual environment#

Phalanx comes with a Python command-line tool which depends on a variety of Python libraries. To ensure consistent behavior, those dependencies are pinned to specific versions. This tool should therefore always be run from inside a Python virtual environment or venv.

Ensure that you have Python 3.11 or later available. Then, create a virtual environment for that version of Python with your method of choice. virtualenvwrapper is one popular approach.

Whenever you do Phalanx development, you should switch to this virtualenv.

Initialize the development environment#

From the phalanx directory, with the virtualenv from the previous step activated, initialize your environment:

make init

This step populates your virtual environment with Phalanx’s dependencies, installs tox (used for testing and other build steps), and installs pre-commit (used to check and sometimes reformat your changes before committing them).

Install helm-docs#

helm-docs will be run automatically by pre-commit for any commit that changes an application or environment Helm chart. You therefore must have it installed on your PATH.

See the helm-docs installation guide for details. Also, not mentioned on that page, you can download a binary release from the releases page. To see which binary is most appropriate for a Linux system, run uname -m.

Warning

You must have the same verison of helm-docs installed locally that is used by GitHub Actions, or you risk GitHub Actions seeing output changes, which will block merging of your PR. To see what version of helm-docs is used by GitHub actions, look for helm-docs in .github/workflows/ci.yaml.

The best (but possibly not the most convenient) way to make certain you have the same version is to run the same go install command that GitHub Actions uses. However, this (unlike the installation methods documented in the installation guide) will require that you have Go installed locally. Alternately, find the binary release matching the desired version in the releases page and download that version.

The required version of helm-docs will be updated periodically. If tox run -e lint creates lots of spurious changes to generated documentation, your version of helm-docs is probably out of date and should be updated to a matching version.

If you don’t want to (or don’t have access to) install helm-docs globally on your system, you can put the binary in the bin directory of the virtual environment you created in Create a Python virtual environment.

Install helm#

Some Phalanx commands require Helm (v3 or later) to be available on your PATH. Any version of Helm after v3 should be okay. See the Helm installation guide for installation instructions.

If you don’t want to (or don’t have access to) install helm globally on your system, you can put the binary in the bin directory of the virtual environment you created in Create a Python virtual environment.

Warning

The Python PyPI package helm is something entirely different and is not what Phalanx uses. Don’t try to install Helm from PyPI; follow the above instructions instead.

Next steps#

You are now ready to use the Phalanx command-line tool and make changes to Phalanx.