Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

rfc14: add bank and project as optional jobspec attributes #420

Merged
merged 2 commits into from
Aug 7, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -65,6 +65,7 @@

linkcheck_ignore = [
"https://help.github.com/en/pull-requests", # 403 Forbidden
r"https://blog\.twitter\.com/.*", # 403 Forbidden
]


Expand Down
12 changes: 12 additions & 0 deletions spec_14.rst
Original file line number Diff line number Diff line change
Expand Up @@ -334,6 +334,18 @@ Some common system attributes are:
The value of the ``queue`` attribute is a string containing the name of
the job queue this job should be submitted to.

**bank**
The value of the ``bank`` attribute is a string containing the name of
an accounting bank requested for this job. Support for the ``bank``
attribute MAY depend on installation and configuration of optional
framework components, such as an accounting or other plugin.

**project**
The value of the ``project`` attribute is a string containing the
name of an accounting project requested for this job. Support for the
``project`` attribute MAY depend on installation and configuration of
optional framework components, such as an accounting or other plugin.

**dependencies**
The value of the ``dependencies`` attribute SHALL be a
list of dictionaries following the format specified in RFC 26.
Expand Down
Loading