...
3YOURMIND Support team can provide an exported archive from 3YD Cloud solution
Copy the archive to the server and put into the installation folder
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
Wipe your database and recreate an empty database
Restart the application by running
upgrade.sh
or by killing the button3d pod to trigger the migrations.Extract the file in the installation directory
tar zxvf <site_dump>.tar
Make sure the load_site.sh is executable
sudo chmod +x load_site.sh
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
...