Skip to content

Commit

Permalink
feat: adding an initial set of sample templates (#25)
Browse files Browse the repository at this point in the history
Summary:

We are providing some sample Job/Environment Templates that users can
reference to demonstrate the sorts of things that can be done
with Open Job Description. This seeds an initial set of templates.

Signed-off-by: Daniel Neilson <53624638+ddneilson@users.noreply.github.com>
  • Loading branch information
ddneilson authored Feb 13, 2024
1 parent be9c84f commit f089192
Show file tree
Hide file tree
Showing 16 changed files with 1,423 additions and 21 deletions.
58 changes: 58 additions & 0 deletions .github/workflows/check_samples.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,58 @@
name: Validate Samples

on:
pull_request:
branches: [ mainline ]
paths:
- samples/**

jobs:
CopyrightHeader:
name: Copyright Header
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4

- name: Check Header
run: |
set -eou pipefail
EXPECTED_HEADER="# Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved."
for f in $(find samples/ -name '*.yaml')
do
echo "Checking: $f"
if test "$(head -n 1 $f)" != "${EXPECTED_HEADER}"
then
echo "ERROR: Copyright header missing on file: $f"
exit 1
fi
done
TemplateValidation:
name: Check template syntax
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4

- name: Setup Python
uses: actions/setup-python@v5
with:
python-version: '3.12'

- name: Install openjd-cli
run: |
pip install --upgrade pip
pip install openjd-cli
- name: Run check
run: |
set -eou pipefail
for f in $(find samples/v2023-09/ -name '*.yaml')
do
echo "Checking: $f"
openjd check $f
if test $? -ne 0
then
echo "Failed check"
exit 1
fi
done
4 changes: 2 additions & 2 deletions CONTRIBUTING.md
Original file line number Diff line number Diff line change
Expand Up @@ -16,8 +16,8 @@ know that, as currently specified, Open Job Description is not a cure-all for an
* [Issues](https://github.com/OpenJobDescription/openjd-specifications/issues):
We encourage you to use the GitHub issue tracker to report bugs.
* [Pull Requests](https://github.com/OpenJobDescription/openjd-specifications/pulls):
We welcome pull requests to improve this wiki documentation. Simply make your changes in our [GitHub Repository](https://github.com/OpenJobDescription/openjd-specifications/tree/mainline/wiki)
and post a pull request.
We welcome pull requests to improve the wiki documentation and add sample templates. Simply make your changes in
our [GitHub Repository](https://github.com/OpenJobDescription/openjd-specifications/tree/mainline/wiki) and post a pull request.

Please read through this document before submitting any issues or pull requests to ensure we have all the necessary
information to effectively respond to your bug report or contribution.
Expand Down
58 changes: 41 additions & 17 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,33 +7,57 @@ and to drive updates from the community.
Jump to:

* [Wiki Home](https://github.com/OpenJobDescription/openjd-specifications/wiki)
* [Sample Templates](samples/README.md)
* [RFC Readme](rfcs/README.md)

## Getting Started

The fastest way to understand the bones of Open Job Description is to understand both [How Jobs Are Constructed](https://github.com/OpenJobDescription/openjd-specifications/wiki/How-Jobs-Are-Constructed)
The fastest way to understand the bones of Open Job Description is to understand both
[How Jobs Are Constructed](https://github.com/OpenJobDescription/openjd-specifications/wiki/How-Jobs-Are-Constructed)
and [How Jobs Are Run](https://github.com/OpenJobDescription/openjd-specifications/wiki/How-Jobs-Are-Run).
You may also find it beneficial to look through the provided
[sample templates](https://github.com/OpenJobDescription/openjd-specifications/tree/mainline/samples) in this GitHub
repository.

## What is Open Job Description?

Open Job Description is a flexible open specification for defining render
jobs which are portable between studios and render solutions.

We created Open Job Description after hearing frequently from studios that they
found the choice of render farm management tools to be daunting due to the
effort required to update or replace their tooling around the render farm. We
also heard from software developers that they were unable to realistically
release render farm plugins for their own applications despite being the most
qualified to do so, as the render farm landscape was fractured and releasing
multiple plugins for different render farm solutions would quickly siphon all
their development capacity away from improving their software. A standard way of
defining render jobs, or really any type of work suited for completion on a
render farm, makes tools and plugins portable and increases interoperability.

For deeper insight into our thought process and goals, we recommend [this Academy Software Foundation talk](https://www.youtube.com/watch?v=3AM3L6P-cAw&list=PL9dZxafYCWmxDFGc2CEq4SgCkZWKYW1m5&index=14)
by Pauline Koh, Senior Product Manager at Amazon Web Services, titled
Open Job Description is a flexible open specification for defining render
jobs which are portable between studios and render solutions.

We created Open Job Description after hearing frequently from studios that they
found the choice of render farm management tools to be daunting due to the
effort required to update or replace their tooling around the render farm. We
also heard from software developers that they were unable to realistically
release render farm plugins for their own applications despite being the most
qualified to do so, as the render farm landscape was fractured and releasing
multiple plugins for different render farm solutions would quickly siphon all
their development capacity away from improving their software. A standard way of
defining render jobs, or really any type of work suited for completion on a
render farm, makes tools and plugins portable and increases interoperability.

For deeper insight into our thought process and goals, we recommend
[this Academy Software Foundation talk](https://www.youtube.com/watch?v=3AM3L6P-cAw&list=PL9dZxafYCWmxDFGc2CEq4SgCkZWKYW1m5&index=14)
by Pauline Koh, Senior Product Manager at Amazon Web Services, titled
*Portable Jobs for Open Source Content Production*.

## Open Job Description Projects

*If you have an Open Job Description project that you would like to advertise here then please
submit a pull request.*

### Tools

* [openjd-cli](https://github.com/OpenJobDescription/openjd-cli) - Provides a command-line
interface for working with Open Job Description templates.

### Libraries

* [openjd-model](https://github.com/OpenJobDescription/openjd-model-for-python) - A Python
implementation of the data model for Open Job Description's template schemas.
* [openjd-sessions](https://github.com/OpenJobDescription/openjd-sessions-for-python) - A Python
library that can be used to build a runtime that is able to run Jobs in a Session as defined
by Open Job Description.

## Contributing

Open Job Description is under active development. We're releasing this because
Expand Down
175 changes: 175 additions & 0 deletions samples/LICENSE
Original file line number Diff line number Diff line change
@@ -0,0 +1,175 @@

Apache License
Version 2.0, January 2004
http://www.apache.org/licenses/

TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION

1. Definitions.

"License" shall mean the terms and conditions for use, reproduction,
and distribution as defined by Sections 1 through 9 of this document.

"Licensor" shall mean the copyright owner or entity authorized by
the copyright owner that is granting the License.

"Legal Entity" shall mean the union of the acting entity and all
other entities that control, are controlled by, or are under common
control with that entity. For the purposes of this definition,
"control" means (i) the power, direct or indirect, to cause the
direction or management of such entity, whether by contract or
otherwise, or (ii) ownership of fifty percent (50%) or more of the
outstanding shares, or (iii) beneficial ownership of such entity.

"You" (or "Your") shall mean an individual or Legal Entity
exercising permissions granted by this License.

"Source" form shall mean the preferred form for making modifications,
including but not limited to software source code, documentation
source, and configuration files.

"Object" form shall mean any form resulting from mechanical
transformation or translation of a Source form, including but
not limited to compiled object code, generated documentation,
and conversions to other media types.

"Work" shall mean the work of authorship, whether in Source or
Object form, made available under the License, as indicated by a
copyright notice that is included in or attached to the work
(an example is provided in the Appendix below).

"Derivative Works" shall mean any work, whether in Source or Object
form, that is based on (or derived from) the Work and for which the
editorial revisions, annotations, elaborations, or other modifications
represent, as a whole, an original work of authorship. For the purposes
of this License, Derivative Works shall not include works that remain
separable from, or merely link (or bind by name) to the interfaces of,
the Work and Derivative Works thereof.

"Contribution" shall mean any work of authorship, including
the original version of the Work and any modifications or additions
to that Work or Derivative Works thereof, that is intentionally
submitted to Licensor for inclusion in the Work by the copyright owner
or by an individual or Legal Entity authorized to submit on behalf of
the copyright owner. For the purposes of this definition, "submitted"
means any form of electronic, verbal, or written communication sent
to the Licensor or its representatives, including but not limited to
communication on electronic mailing lists, source code control systems,
and issue tracking systems that are managed by, or on behalf of, the
Licensor for the purpose of discussing and improving the Work, but
excluding communication that is conspicuously marked or otherwise
designated in writing by the copyright owner as "Not a Contribution."

"Contributor" shall mean Licensor and any individual or Legal Entity
on behalf of whom a Contribution has been received by Licensor and
subsequently incorporated within the Work.

2. Grant of Copyright License. Subject to the terms and conditions of
this License, each Contributor hereby grants to You a perpetual,
worldwide, non-exclusive, no-charge, royalty-free, irrevocable
copyright license to reproduce, prepare Derivative Works of,
publicly display, publicly perform, sublicense, and distribute the
Work and such Derivative Works in Source or Object form.

3. Grant of Patent License. Subject to the terms and conditions of
this License, each Contributor hereby grants to You a perpetual,
worldwide, non-exclusive, no-charge, royalty-free, irrevocable
(except as stated in this section) patent license to make, have made,
use, offer to sell, sell, import, and otherwise transfer the Work,
where such license applies only to those patent claims licensable
by such Contributor that are necessarily infringed by their
Contribution(s) alone or by combination of their Contribution(s)
with the Work to which such Contribution(s) was submitted. If You
institute patent litigation against any entity (including a
cross-claim or counterclaim in a lawsuit) alleging that the Work
or a Contribution incorporated within the Work constitutes direct
or contributory patent infringement, then any patent licenses
granted to You under this License for that Work shall terminate
as of the date such litigation is filed.

4. Redistribution. You may reproduce and distribute copies of the
Work or Derivative Works thereof in any medium, with or without
modifications, and in Source or Object form, provided that You
meet the following conditions:

(a) You must give any other recipients of the Work or
Derivative Works a copy of this License; and

(b) You must cause any modified files to carry prominent notices
stating that You changed the files; and

(c) You must retain, in the Source form of any Derivative Works
that You distribute, all copyright, patent, trademark, and
attribution notices from the Source form of the Work,
excluding those notices that do not pertain to any part of
the Derivative Works; and

(d) If the Work includes a "NOTICE" text file as part of its
distribution, then any Derivative Works that You distribute must
include a readable copy of the attribution notices contained
within such NOTICE file, excluding those notices that do not
pertain to any part of the Derivative Works, in at least one
of the following places: within a NOTICE text file distributed
as part of the Derivative Works; within the Source form or
documentation, if provided along with the Derivative Works; or,
within a display generated by the Derivative Works, if and
wherever such third-party notices normally appear. The contents
of the NOTICE file are for informational purposes only and
do not modify the License. You may add Your own attribution
notices within Derivative Works that You distribute, alongside
or as an addendum to the NOTICE text from the Work, provided
that such additional attribution notices cannot be construed
as modifying the License.

You may add Your own copyright statement to Your modifications and
may provide additional or different license terms and conditions
for use, reproduction, or distribution of Your modifications, or
for any such Derivative Works as a whole, provided Your use,
reproduction, and distribution of the Work otherwise complies with
the conditions stated in this License.

5. Submission of Contributions. Unless You explicitly state otherwise,
any Contribution intentionally submitted for inclusion in the Work
by You to the Licensor shall be under the terms and conditions of
this License, without any additional terms or conditions.
Notwithstanding the above, nothing herein shall supersede or modify
the terms of any separate license agreement you may have executed
with Licensor regarding such Contributions.

6. Trademarks. This License does not grant permission to use the trade
names, trademarks, service marks, or product names of the Licensor,
except as required for reasonable and customary use in describing the
origin of the Work and reproducing the content of the NOTICE file.

7. Disclaimer of Warranty. Unless required by applicable law or
agreed to in writing, Licensor provides the Work (and each
Contributor provides its Contributions) on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or
implied, including, without limitation, any warranties or conditions
of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A
PARTICULAR PURPOSE. You are solely responsible for determining the
appropriateness of using or redistributing the Work and assume any
risks associated with Your exercise of permissions under this License.

8. Limitation of Liability. In no event and under no legal theory,
whether in tort (including negligence), contract, or otherwise,
unless required by applicable law (such as deliberate and grossly
negligent acts) or agreed to in writing, shall any Contributor be
liable to You for damages, including any direct, indirect, special,
incidental, or consequential damages of any character arising as a
result of this License or out of the use or inability to use the
Work (including but not limited to damages for loss of goodwill,
work stoppage, computer failure or malfunction, or any and all
other commercial damages or losses), even if such Contributor
has been advised of the possibility of such damages.

9. Accepting Warranty or Additional Liability. While redistributing
the Work or Derivative Works thereof, You may choose to offer,
and charge a fee for, acceptance of support, warranty, indemnity,
or other liability obligations and/or rights consistent with this
License. However, in accepting such obligations, You may act only
on Your own behalf and on Your sole responsibility, not on behalf
of any other Contributor, and only if You agree to indemnify,
defend, and hold each Contributor harmless for any liability
incurred by, or claims asserted against, such Contributor by reason
of your accepting any such warranty or additional liability.
40 changes: 40 additions & 0 deletions samples/README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,40 @@
# Open Job Description Sample Templates

This directory contains a set of sample templates for the Open Job Description standard.
The aim with these is to provide a small sampling of just some of the things that you
can do with Open Job Description, and a reference set of demonstrations of template
concepts that you can incorporate in to your own templates.

All samples are provided AS-IS. We strongly recommend that you test all samples thoroughly
before use, and customize the samples as required by your individual needs.

## Contributing

We encourage and welcome your contributions to this repository. Simply open a pull
request on this repository that includes your sample and a modification to this README
to add your sample to the index. We ask that all contributions be in YAML document format,
and follow the [sample template](./sample-template.yaml).

Please see the [CONTRIBUTING guide](../CONTRIBUTING.md) for additional information.

## Samples Index

### Revision v2023-09

| Job Template | Concepts Demonstrated |
| ------ | --------------------- |
| [algorithmic-art](./v2023-09/job_templates/algorithmic-art.yaml) | step environment, step dependencies, task parameter combination, job parameters, path mapping, embedded files, openjd_env, animated video |
| [blender-ffmpeg](./v2023-09/job_templates/blender-ffmpeg.yaml) | step dependencies, embedded files, job parameters, ui metadata |
| [ffmpeg](./v2023-09/job_templates/ffmpeg.yaml) | command arguments, debugging environment, step dependencies, job parameters, ui metadata |
| [host-requirements](./v2023-09/job_templates/host-requirements.yaml) | host requirements |
| [stdout-messages](./v2023-09/job_templates/stdout-messages.yaml) | stdout messages, embedded files |
| [ui-controls-showcase](./v2023-09/job_templates/ui-controls-showcase.yaml) | job parameters, ui metadata, embedded file |

| Environment Template | Concepts Demonstrated |
| ------ | --------------------- |
| [python-venv](./v2023-09/environment_templates/python-venv.yaml) | environment, openjd_env, embedded file |

## License

All templates in this directory and all of its subdirectories are made available
under the terms of the [Apache License 2.0](./LICENSE).
23 changes: 23 additions & 0 deletions samples/sample-template.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
# Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
#
# ----
# Demonstrates
# ----
# A brief description of what this sample is demonstrating that you want to draw
# attention to.
#
# ----
# Requirements
# ----
# What, if any, requirements must be met by the host environment to be able
# to run this template. Provide this as a bulleted list. For example
# - Software package X, version x.y.z or higher
# - linux
# - ... etc
#
# -----
# Contributors to this template:
# <add your name here, if desired>

name: Brief-Descriptive-Title
# ... and so on
Loading

0 comments on commit f089192

Please sign in to comment.