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

document multi-line strings #146

Merged
merged 1 commit into from
Dec 1, 2023
Merged
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
14 changes: 11 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -171,9 +171,14 @@ openondemand::clusters:
job_version: '6.0.1'
batch_connect:
basic:
script_wrapper: 'module restore\n%s'
script_wrapper: |
module restore
%s
vnc:
script_wrapper: 'module restore\nmodule load ondemand-vnc\n%s'
script_wrapper: |
module restore
module load ondemand-vnc
%s
```

Define a Linux Host Adapter cluster:
Expand All @@ -199,7 +204,10 @@ openondemand::clusters:
job_tmux_bin: /usr/bin/tmux
batch_connect:
vnc:
script_wrapper: 'module restore\nmodule load ondemand-vnc\n%s'
script_wrapper: |
module restore
module load ondemand-vnc
%s
```

Define a Kubernetes cluster:
Expand Down