Skip to content
Open
Show file tree
Hide file tree
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
2 changes: 2 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,8 @@ Unreleased (latest)
Changes:
--------
- Add a config directory named `/jupyter_config_dir` to allow users to mount JupyterLab extension configuration.
- Discover the log directory using the `BIRDHOUSE_LOG_DIR` or the `PAVICS_LOG_DIR` environment variable in order to
support [birdhouse-deploy](https://github.com/bird-house/birdhouse-deploy/) versions >= 2.4.0

Fixes:
------
Expand Down
4 changes: 2 additions & 2 deletions scheduler-jobs/deploy_data_pavics_jupyter.env
Original file line number Diff line number Diff line change
Expand Up @@ -51,9 +51,9 @@ for i in $( seq 1 "$(echo "${DOCKER_NOTEBOOK_IMAGES}" | wc -w)" ) ; do
return 1
fi

# Log file location. Default location under /var/log/PAVICS/ has built-in logrotate.
# Log file location. Default location under /var/log/birdhouse/ has built-in logrotate.
if [ -z "${DEPLOY_DATA_JOB_LOGFILE}" ]; then
DEPLOY_DATA_JOB_LOGFILE="${PAVICS_LOG_DIR}/${DEPLOY_DATA_JOB_JOB_NAME}.log"
DEPLOY_DATA_JOB_LOGFILE="${BIRDHOUSE_LOG_DIR:-${PAVICS_LOG_DIR}}/${DEPLOY_DATA_JOB_JOB_NAME}.log"
fi

if [ -z "$(echo "${AUTODEPLOY_EXTRA_SCHEDULER_JOBS}" | grep "${DEPLOY_DATA_JOB_JOB_NAME}")" ]; then
Expand Down