Do you have something that you wish to contribute to slurmd-operator? If so, here is how you can help!
Please take a moment to review this document so that the contribution process will be easy and effective for everyone involved. Also, please familiarise yourself with the Juju SDK documentation as it will help you better understand how slurmd-operator works and is developed.
Following these guidelines helps you communicate that you respect the developers managing and developing slurmd-operator. In return, they should reciprocate that respect while they are addressing your issue or assessing your submitted patches and features.
Have any questions? Feel free to ask them in the Ubuntu HPC Matrix space.
- Using the issue tracker
- Issues and Labels
- Bug Reports
- Feature Requests
- Pull Requests
- Discussions
- Code Guidelines
- License
The issue tracker is the preferred way for tracking bug reports, feature requests, and submitted pull requests, but please follow these guidelines for the issue tracker:
-
Please do not use the issue tracker for personal issues and/or support requests. The Discussions page is a better place to get help for personal support requests.
-
Please do not derail or troll issues. Keep the discussion on track and have respect for the other users/contributors of slurmd-operator.
-
Please do not post comments consisting solely of "+1", ":thumbsup:", or something similar. Use GitHub's "reactions" feature instead.
- The maintainers of slurmd-operator reserve the right to delete comments that violate this rule.
-
Please do not repost or reopen issues that have been closed. Please either submit a new issue or browser through previous issues.
- The maintainers of slurmd-operator reserve the right to delete issues that violate this rule.
The slurmd-operator issue tracker uses a variety of labels to help organize and identify issues. Here is a list of some of these labels, and how the maintainers of slurmd-operator use them:
-
Type: Bug
- Issues reported in the slurmd-operator source code that either produce errors or unexpected behavior. -
Status: Confirmed
- Issues markedType: Bug
that have be confirmed to be reproducible on a separate system. -
Type: Documentation
- Issues for improving or updating slurmd-operator's documentation. Can also be used for pull requests. -
Type: Refactor
- Issues that pertain to improving the existing slurmd-operator code base. -
Type: Idea Bank
- Issues that pertain to proposing potential improvement to slurmd-operator. -
Type: Enhancement
- Issues marked as an agreed upon enhancement to slurmd-operator. Can also be used for pull requests. -
Statues: Help wanted
- Issues where we need help from the greater slurmd-operator community to solve.
For a complete look at slurmd-operator's labels, see the project labels page.
A bug is a demonstrable problem that is caused by slurmd-operator. Good bug reports make slurmd-operator more robust, so thank you for taking the time to report issues in the source code!
Guidelines for reporting bugs in slurmd-operator:
-
Validate your testlet — ensure that your issue is not being caused by either a semantic or syntactic error in your testlet's code.
-
Use the GitHub issue search — check if the issue you are encountering has already been reported by someone else.
-
Check if the issue has already been fixed — try to reproduce your issue using the latest
main
in the slurmd-operator repository. -
Isolate the problem — the more pinpointed the issue is, the easier time the slurmd-operator developers will have fixing it.
A good bug report should not leave others needing to chase you for more information. Please try to be as detailed as possible in your report. What is your environment? What steps will reproduce the issue? What operating system are you experiencing the problem on? Have you had the same results on a different operating system? What would you expect to be the outcome? All these details will help the developers fix any potential bugs.
All feature requests should be posted to GitHub Discussions and tagged as Type: Idea Bank
. The maintainers of
slurmd-operator already know the features they want to incorporate into slurmd-operator, but they are always open to
new ideas and potential improvements. GitHub Discussions is the best place to post these types of requests
because it allows for feedback from the entire community and does not bloat the issue tracker. Please note that not
all feature requests will be incorporated into slurmd-operator. Also, feature requests posted on the issue tracker
will be tagged as Type: Invalid
and closed. Lastly, please note that spamming the maintainers to incorporate a
feature you want into slurmd-operator will not improve its likelihood of being implemented; it may result in you receiving
a temporary ban from the repository.
Good pull requests — patches, improvements, new features — are a huge help. These pull requests should remain focused in scope and should not contain unrelated commits.
Ask first before embarking on any significant pull request (e.g. implementing new features, refactoring code, incorporating a new test environment provider, etc.), otherwise you risk spending a lot of time working on something that slurmd-operator's developers might not want to merge into the project! For trivial things, or things that do not require a lot of your time, you can go ahead and make a pull request.
Adhering to the following process is the best way to get your work included in the project:
-
Fork the project, clone your fork, and configure the remotes:
# Clone your fork of the repo into the current directory git clone https://github.com/<your-username>/slurmd-operator.git # Navigate to the newly cloned directory cd slurmd-operator # Assign the original repo to a remote called "upstream" git remote add upstream https://github.com/omnivector-solutions/slurmd-operator.git
-
If you cloned a while ago, pull the latest changes from the upstream slurmd-operator repository:
git checkout main git pull upstream main
-
Create a new topic branch (off the main project development branch) to contain your feature, change, or fix:
git checkout -b <topic-branch-name>
-
Ensure that your changes pass all tests:
tox run -e fmt tox run -e lint tox run -e unit tox run -e integration
-
Commit your changes in logical chunks. Please adhere to these git commit message guidelines or your code is unlikely be merged into the main project. Use Git's interactive rebase feature to tidy up your commits before making them public.
-
Locally merge (or rebase) the upstream development branch into your topic branch:
git pull [--rebase] upstream main
-
Push your topic branch up to your fork:
git push origin <topic-branch-name>
-
Open a Pull Request with a clear title and description against the
main
branch.
IMPORTANT: By submitting a patch, improvement, or new feature, you agree to allow the maintainers of slurmd-operator to license your contributions under the terms of the Apache Software License, version 2.0.
GitHub's discussions are a great place to connect with other users of slurmd-operator as well as discuss potential features and resolve personal support questions. It is expected that the users of slurmd-operator remain respectful of each other. Discussion moderators reserve the right to suspend discussions and/or delete posts that do not follow this rule.
The following guidelines must be adhered to if you are writing code to be merged into the main slurmd-operator code base:
- Adhere to the operator development best practices outlined in the operator development styleguide.
-
Adhere to the Python code style guidelines outlined in Python Enhancement Proposal 8.
-
Adhere to the Python docstring conventions outlined in Python Enhancement Proposal 257.
- slurmd-operator docstrings follow the Google docstring format. license
By contributing your code to slurmd-operator, you agree to license your contribution under the Apache Software License, version 2.0.