Skip to main content

2024-11-13 (v4.243)

· 2 min read
Eric Garcia
Software Engineer
Michael McQuade
Director of Engineering
Joey Lin
Joey Lin
Support Engineer
Yifan Lin
Software Engineer
Louis Le
Louis Le
Software Engineer
Matt Long
Support Engineer
Quan Nguyen
Software Engineer

Enhancements and Features

Allow adding images through platform

Platform level slurm cluster images can be managed through the admin panel.

Allow setting default session names

You can now set default session names on workflows:

session:
mySession:
prompt-for-name:
default: "defaultname"

Allow job environment variables on workflows

Allows setting environment variables on a job level. Environment variables set at a step level will override the environment variables set at a job level.

jobs:
main:
env:
foo: "bar"
steps:
- run: echo ${foo} # bar
- run: echo ${foo} # baz
env:
foo: "baz" # will override env variable set on job level

Stop workflow run on session stop

Stopping a session will now also stop the workflow run that started the session and any sessions associated with the workflow run.

Improve workflow update-session logs

Logs and input validation for updating session has been improved.

Bug Fixes

  • Move health check below controller node configuration in provision status
  • Cannot delete some old storage sessions
  • Sessions not deleting after cancelling workflow run
  • Cleanup step running when step is skipped due to if being false
  • Show message about user workspace starting on workflows page