Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

  1. 3YOURMIND Support team can provide an exported archive from 3YD Cloud solution

  2. Copy the archive to the server and put into the installation folder

  3. Make sure to have other initialisation methods disabled (or not existing since default is false) in your values.yaml:

    Code Block
    initConfig:
      bootstrap:
        enabled: false
      loadSampleData:
        enabled: false
  4. Wipe your database and recreate an empty database

  5. Restart the application by running upgrade.sh or by killing the button3d pod to trigger the migrations.

  6. Extract the file in the installation directory
    tar zxvf <site_dump>.tar

  7. Make sure the load_site.sh is executable
    sudo chmod +x load_site.sh

  8. To execute please provide the following arguments in cli:

    • a path to the unarchived folder with the site dump

    • the desired domain to be set after the site has been loaded into the application

    Example:
    ./load_site.sh $HOME/import/<CUSTOMER_SITE> customer.domain.com
    Optionally, it is possible to specify a custom namespace where the application is deployed:
    ./load_site.sh $HOME/import/<CUSTOMER_SITE> customer.domain.com non-default-namespace

...