Deploying in AC 4.x
Accelerators are the pre-built solutions that are provided for specific purposes. These accelerators are in the form of zip files.
To deploy the EDI accelerators, follow the steps given below:
Go to migration 4.0.0 · adeptiainc/adeptia-connect-migration (artifacthub.io)this location to view the details of migration helm package.
Add migration repo using the following command:
Code Block helm repo add adeptia-connect-migration https://adeptia.github.io/adeptia-connect-migration/charts/
Click DEFAULT VALUES to download the values.yaml file.
Provide values for the following properties and environment variables in values.yaml file as shown in the table below.
Variable/Property | Value |
---|---|
BACKEND_DB_ |
...
URL | <URL of the backend database server>
|
BACKEND_DB_ |
...
USERNAME | <Username of your backend database |
...
server> |
BACKEND_DB_ |
...
PASSWORD | <Password for your backend database |
...
server> |
BACKEND_DB_DRIVER_ |
...
CLASS | <Backend database driver class |
...
name> |
BACKEND_DB_ |
...
TYPE | <Type of the backend database server> For example, SQL-Server. |
SHARED_ |
...
PATH | <Environment variable in the values.yaml file that contains the configured shared path> The default value for this variable is /shared. This is the folder created at the root level in the PVC when you deploy Adeptia Connect. |
MIGRATION_XML_FILE_PATH | <Path of the folder that contains the |
...
The accelerators bundled with the application are by default located at shared/accelerators location in the PVC. You need to place the downloaded accelerators at some other location in the PVC.
accelerator>. |
5. Navigate to the migration directory, and run the below command to install the
...
accelerator.
Code Block |
---|
helm upgrade -i migration adeptia/migration -f adeptia/values.yaml -n <NAMESPACE> |
The Migration job does not get deleted automatically after the deployment is complete. You need to manually delete it before you start a new deployment.
...