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

Adjust example and wording for explanation #940

Closed
wants to merge 1 commit into from
Closed
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
10 changes: 5 additions & 5 deletions source/enable-desktops/custom-job-submission.rst
Original file line number Diff line number Diff line change
Expand Up @@ -19,14 +19,14 @@ To customize job submission we will need to first edit our custom desktop app
# /etc/ood/config/apps/bc_desktop/my_cluster.yml
---
title: "My Cluster Desktop"
cluster: "my_cluster"
cluster: "my_cluster" # Overriden by submit below
submit: "submit/my_submit.yml.erb"

Notice we included the configuration option ``submit`` that points to our
custom :ref:`app-development-interactive-submit` YAML configuration file. This
can be an absolute file path or a relative file path with respect to the
:file:`/etc/ood/config/apps/bc_desktop/` directory. It is important to notice
you must use this or some other directory outside the app's root.
custom :ref:`app-development-interactive-submit` YAML configuration file. This will
override our ``cluster`` setting and use what is found in ``my_submit.yml.erb``.
The ``submit`` file path can be an absolute file path or a relative file path
with respect to the :file:`/etc/ood/config/apps/bc_desktop/` directory.

.. note::

Expand Down
Loading