We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
We should be able to use YAML anchor, http://docs.getcloudify.org/dev/blueprints/spec-dsl-definitions/
But it seems the sbatch there's a bug with the parser. The generated slurm batch script generated goes wrong with get_input entries.
For example we might want to do something like this:
# blueprint dsl_definitions: # Create an alias - &job_properties_default modules: - gcc/6.4.0 - openmpi/1.10.7_gcc640 partition: 'public' home: '${HOME}:/home/${USER}' volumes: - '/scratch' - '${HOME}/test:/test' image: '${HOME}/singularity.simg' command: 'echo failed' nodes: 1 tasks: 1 tasks_per_node: 1 max_time: '00:10:00' # ... node_types: myjob: type: hpc.nodes.singularity_job job_options: default: <<: *job_properties_default # Call the alias command: echo "toto" # Override command key only !
The text was updated successfully, but these errors were encountered:
emepetres
No branches or pull requests
We should be able to use YAML anchor,
http://docs.getcloudify.org/dev/blueprints/spec-dsl-definitions/
But it seems the sbatch there's a bug with the parser. The generated slurm batch script generated
goes wrong with get_input entries.
For example we might want to do something like this:
The text was updated successfully, but these errors were encountered: