First installation
Create a directory on the server where the application will be unpacked:
mkdir -p 3yd_vXXX && cd 3yd_vXXXDownload the archive package from the link provided by the 3YD Technical Support team:
curl -o 3yd_vXXX.tgz “Download Link“
Note: The link should be surrounded in double quotes ““ as it contains symbols interpreted as special characters by the bash shellUnpack the installation package:
tar -zxvf 3yd_vXXX.tgzCreate a folder where the uploads will be stored called
DATA. (Must be an absolute path like/home/ubuntu/DATA)mkdir -p $HOME/DATAObtain the domain name under which the application should be reachable (e.g
app.example.com)
Note: We recommend exporting the two variables above in your.bashrcvim ~/.bashrcornano ~/.bashrcto open and edit the.bashrcfile
Append the code to the end of the fileexport DOMAIN=yourDomainName.xxx export DATA=/home/ubuntu/DATAReload your
./bashrcwithsource ~/.bashrcRun the install script:
sudo ./install.sh $DOMAIN $DATA; exec bash -lYou can now make changes to the configuration file
values.yaml.
See https://3yourmind.atlassian.net/wiki/spaces/PD/pages/633274386 for more details.Apply the changed configuration:
sudo ./upgrade.shCheck the status of the application:
kubectl get pods
No labels