Skip to content

Backup Configuration

This operation can be executed from the any macOS or GNU\Linux machine that has enough space to store the backup.

Normally, all DataRobot configuration is in the values.yaml files that you have been using to install DataRobot from the Helm charts. In order to move the configuration to a new cluster, just use these files while installing this new cluster.

Export configuration from the running cluster

Prerequisites

  • Utility helm of version 1.23 is installed on the host where backup will be created
  • Utility helm is configured to access the Kubernetes cluster where DataRobot application is running, verify this with helm status dr command.

Define where the backups will be stored on the host where backup will be created. I use ~/datarobot-backups/, but feel free to choose a different one:

export BACKUP_LOCATION=~/datarobot-backups/
mkdir -p ${BACKUP_LOCATION}

Export configuration for PCS and DataRobot chart:

helm get values dr > ${BACKUP_LOCATION}/dr_values.yaml
helm get values pcs > ${BACKUP_LOCATION}/pcs_values.yaml