This document explains the processes and practices recommended for contributing enhancements to the Synapse operator.
- Generally, before developing enhancements to this charm, you should consider opening an issue explaining your use case.
- If you would like to chat with us about your use-cases or proposed implementation, you can reach us at Canonical Matrix public channel or Discourse.
- Familiarizing yourself with the Juju documentation will help you a lot when working on new features or bug fixes.
- All enhancements require review before being merged. Code review typically
examines
- code quality
- test coverage
- user experience for Juju operators of this charm.
- Once your pull request is approved, we squash and merge your pull request branch onto
the
mainbranch. This creates a linear Git commit history. - For further information on contributing, please refer to our Contributing Guide.
When contributing, you must abide by the Ubuntu Code of Conduct.
Please ensure that any new feature, fix, or significant change is documented by adding an entry to the CHANGELOG.md file. Use the date of the contribution as the header for new entries.
To learn more about changelog best practices, visit Keep a Changelog.
If you want to address an issue or a bug in this project, notify in advance the people involved to avoid confusion; also, reference the issue or bug number when you submit the changes.
- Fork our [GitHub repository](link to GitHub repository) and add the changes to your fork, properly structuring your commits, providing detailed commit messages and signing your commits.
- Make sure the updated project builds and runs without warnings or errors; this includes linting, documentation, code and tests.
- Submit the changes as a pull request (PR).
Your changes will be reviewed in due time; if approved, they will be eventually merged.
You are free to use any tools you want while preparing your contribution, including AI, provided that you do so lawfully and ethically.
Avoid using AI to complete issues tagged with the "good first issues" label. The purpose of these issues is to provide newcomers with opportunities to contribute to our projects and gain coding skills. Using AI to complete these tasks undermines their purpose.
We have created instructions and tools that you can provide AI while preparing your contribution: copilot-collections
While it isn't necessary to use copilot-collections while preparing your
contribution, these files contain details about our quality standards and
practices that will help the AI avoid common pitfalls when interacting with
our projects. By using these tools, you can avoid longer review times and nitpicks.
If you choose to use AI, please disclose this information to us by indicating AI usage in the PR description (for instance, marking the checklist item about AI usage). You don't need to go into explicit details about how and where you used AI.
Avoid submitting contributions that you don't fully understand. You are responsible for the entire contribution, including the AI-assisted portions. You must be willing to engage in discussion and respond to any questions, comments, or suggestions we may have.
To improve contribution tracking, we use the Canonical contributor license agreement (CLA) as a legal sign-off, and we require all commits to have verified signatures.
Canonical welcomes contributions to the Synapse operator. Please check out our contributor agreement if you're interested in contributing to the solution.
The CLA sign-off is simple line at the end of the commit message certifying that you wrote it or have the right to commit it as an open-source contribution.
All commits in a pull request must have cryptographic (verified) signatures. To add signatures on your commits, follow the GitHub documentation.
To contribute to this charm, start with a working Juju/Charmcraft/Rockcraft setup: Set up your deployment - local testing and development.
This guide documents workflow for tox, charmcraft, rockcraft, and juju commands.
The code for this charm can be downloaded as follows:
git clone https://github.com/canonical/synapse-operator
Use tox-managed environments:
tox --notest -e unit
source .tox/unit/bin/activateOr create an integration-focused development environment:
tox devenv -e integration
source venv/bin/activateNote that the Synapse image need to be built and
pushed to MicroK8s for the tests to run. It should be tagged as
localhost:32000/synapse:latestso that Kubernetes knows how to pull them
from the MicroK8s repository. Note that the MicroK8s registry needs to be
enabled using microk8s enable registry. More details regarding the OCI image
below. The following commands can then be used to run the tests:
tox: Runs all of the basic checks (lint,unit,static, andcoverage-report).tox -e fmt: Runs formatting usingblackandisort.tox -e lint: Runs a range of static code analysis to check the code.tox -e static: Runs other checks such asbanditfor security issues.tox -e unit: Runs the unit tests.tox -e integration: Runs the integration tests.
Available environments include:
tox -aIntegration tests require a charm file and image unless you use --use-existing:
- CLI args:
--charm-file--synapse-image
- Env alternatives (one-to-one mapping):
CHARM_FILEROCK_IMAGE
tox -e integration -- \
--charm-file="${CHARM_FILE}" \
--synapse-image="${ROCK_IMAGE}"tox -e integration -- \
--charm-file="${CHARM_FILE}" \
--synapse-image="${ROCK_IMAGE}" \
-k "test_synapse_is_up"export CHARM_FILE="${CHARM_FILE}"
export ROCK_IMAGE="${ROCK_IMAGE}"
tox -e integration -- -k "test_synapse_is_up"For S3-related tests, pass a Localstack host/IP (without :4566):
tox -e integration -- \
--charm-file="${CHARM_FILE}" \
--synapse-image="${ROCK_IMAGE}" \
--localstack-address=127.0.0.1Equivalent env var:
export LOCALSTACK_ADDRESS=127.0.0.1
tox -e integration -- \
--charm-file="${CHARM_FILE}" \
--synapse-image="${ROCK_IMAGE}"--use-existing tells test fixtures to reuse applications already present in the selected model instead of deploying Synapse/PostgreSQL from scratch.
tox -e integration -- --use-existingWhen using --use-existing, ensure the model already contains the expected apps (notably synapse, and typically postgresql-k8s for DB-backed tests).
If required apps are missing, tests that rely on them will fail.
Build the charm in this git repository using:
charmcraft pack --bases-index=0
CHARM_FILE="$(ls -1t ./*.charm | head -n1)"
echo "$CHARM_FILE"For the integration tests (and also to deploy the charm locally), the synapse image is required in the MicroK8s registry. To enable it:
microk8s enable registryThe following commands import the images in the Docker daemon and push them into the registry:
cd [project_dir]/synapse_rock && rockcraft pack
skopeo --insecure-policy copy --dest-tls-verify=false oci-archive:synapse_1.0_amd64.rock docker://localhost:32000/synapse:latestmicrok8s enable registry
cd synapse_rock
rockcraft pack
cd ..
ROCK_FILE="$(ls -1t synapse_rock/*.rock | head -n1)"
ROCK_IMAGE="localhost:32000/synapse:latest"
SKOPEO_BIN="$(command -v skopeo || command -v rockcraft.skopeo)"
"$SKOPEO_BIN" --insecure-policy copy --dest-tls-verify=false \
"oci-archive:${ROCK_FILE}" "docker://${ROCK_IMAGE}"# Create a model
juju add-model synapse-dev
# Enable DEBUG logging
juju model-config logging-config="<root>=INFO;unit=DEBUG"
# Deploy the charm (assuming you're on amd64)
juju deploy ./synapse_ubuntu-22.04-amd64.charm \
--resource synapse-image=localhost:32000/synapse:latestOptional common follow-up:
juju config -m synapse-dev synapse server_name=my.synapse.localSynapse requires a server_name to be set before starting. Note that this cannot
be changed later.
The following command will configure the server_name mychat.test.com:
juju configure synapse server_name=mychat.test.comRead more about server_name in Configuring Synapse.