...
Download Prerequisites:
Download required software from Google Drive (ACExpress pre-required software).
Install Software:
Install all required software on the Bastion.
Install CLI for Windows:
Open PowerShell and run the following command to install Chocolatey:
Copy code
Set-ExecutionPolicy Bypass -Scope Process -Force; [System.Net.ServicePointManager]::SecurityProtocol = [System.Net.ServicePointManager]::SecurityProtocol -bor 3072; iex ((New-Object System.Net.WebClient).DownloadString('https://community.chocolatey.org/install.ps1'))
Info |
---|
Note: To deploy from your laptop, you must have administrative rights to install the Command Line Interface (CLI), Helm, and Chocolatey (choco). Typically, the MST team will configure these tools and provide remote access for login and deployment. In this scenario, you will not need to configure the CLI, Helm, and Chocolatey yourself. |
...
3. Database Configuration
Database Setup:
Create the connection from the workbench.
Verify the DB user provided by Connectria.
Create the database and users. Example command:
Copy code
create user '<<customer_name>>productionuser'@'%' IDENTIFIED BY 'password'; GRANT ALL PRIVILEGES ON <<customer_name>>_backend.* TO '<<customer_name>>productionuser'@'%' WITH GRANT OPTION;
For Example:
acsSittrainingbackend and acsSittraininglogs are the two databases created.
acsSituser is the user created with full privileges over these two databases, and they can grant these privileges to others.
|
---|
...
...
4. YAML and Cluster Setup
Prepare YAML Configuration:
Prepare the YAML file as per the client’s license and details provided via email.
How to access YAML file - Currently the YAML file is taken from product team and placed at shared location as shown in image below
Info |
---|
Note: Create a copy of ACExpress folder with other name and then edit the YAML files to input details |
...
Update YAML File by changing the Env screat to update database and AIMap Backend update
Update backend and log details and set static, migration cleanup job to “True”
...
AKS Cluster Setup:
Add the Bastion IP in the AKS cluster network security settings.
...
5. Helm and Adeptia Connect Installation
...