user_settings
SlurmSshUserSettings
¶
Bases: BaseModel
Subset of user settings which must be present for task collection and job execution when using the Slurm-SSH runner.
Attributes:
Name | Type | Description |
---|---|---|
ssh_host |
str
|
SSH-reachable host where a SLURM client is available. |
ssh_username |
str
|
User on |
ssh_private_key_path |
str
|
Path of private SSH key for |
ssh_tasks_dir |
str
|
Task-venvs base folder on |
ssh_jobs_dir |
str
|
Jobs base folder on |
slurm_accounts |
list[str]
|
List of SLURM accounts, to be used upon Fractal job submission. |
Source code in fractal_server/app/user_settings.py
5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 |
|
SlurmSudoUserSettings
¶
Bases: BaseModel
Subset of user settings which must be present for task collection and job execution when using the Slurm-sudo runner.
Attributes:
Name | Type | Description |
---|---|---|
slurm_user |
str
|
User to be impersonated via |
cache_dir |
str
|
Folder where |
slurm_accounts |
list[str]
|
List of SLURM accounts, to be used upon Fractal job submission. |
Source code in fractal_server/app/user_settings.py
28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 |
|