Skip to content

Backup Configuration

This operation can be executed from 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 use to install DataRobot from the Helm charts. To move the configuration to a new cluster, use these files while installing the new cluster.

Export configuration from the running cluster

Prerequisites

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

Set the backup storage location on the host. This example uses ~/datarobot-backups/, but you can choose a different location:

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