You can install Adeptia Connect microservices using Helm Charts. A Helm Chart is a collection of files and templates that describe Kubernetes resources governing the deployment of microservices.
Follow the steps below in the same order to install Adeptia Connect.
Pulling the Helm chart
On the Helm CLI, run the following command to pull Adeptia Connect Helm chart to your local cache.
helm chart pull public.ecr.aws/p2x5n4m0/adeptia-connect/helm:Image_tag
Where,
- public.ecr.aws/p2x5n4m0/adeptia-connect/helm:Image_tag is the URL of the repository.
- Image_tag: You can get the image tags from the below URL.
https://gallery.ecr.aws/p2x5n4m0/adeptia-connect/helm
You may be interested in...
Exporting the chart
Export the pulled chart to a local directory by running the command given below.
helm chart export public.ecr.aws/p2x5n4m0/adeptia-connect/helm:Image_tag --destination ./charts
Where,
- public.ecr.aws/p2x5n4m0/adeptia-connect/helm:Image_tag is the URL of the repository.
- charts is the name of the directory where you want to export the chart.
Installing the chart
Before you start the installation, you need to download the values.yaml file and set the following properties related to the database and Secrets in the file.
After setting the values for these properties, run the helm command for installing the application.
Defining the required database properties
Property | Value | Description |
BACKEND_DB_USERNAME | <User defined> | Username for your backend database. If you're using external Secrets, you need not provide a value for this property. |
BACKEND_DB_PASSWORD | <User defined> | Password for your backend database. If you're using external Secrets, you need not provide a value for this property. |
LOG_DB_USERNAME | <User defined> | Username for your log database. If you're using external Secrets, you need not provide a value for this property. |
LOG_DB_PASSWORD | <User defined> | Password for your log database. If you're using external Secrets, you need not provide a value for this property. |
LOG_ARCHIVE_DB_PASSWORD | <User defined> | Password for your log archive database. If you're using external Secrets, you need not provide a value for this property. |
LOG_ARCHIVE_DB_USERNAME | <User defined> | Username for your log archive database. If you're using external Secrets, you need not provide a value for this property. |
QUARTZ_DB_USERNAME | <User defined> | Username for your quartz database. This value will be the same as that for the backend database. If you're using external Secrets, you need not provide a value for this property. |
QUARTZ_DB_PASSWORD | <User defined> | Password for your quartz database. This value will be the same as that for the backend database. If you're using external Secrets, you need not provide a value for this property. |
BACKEND_DB_URL | <User defined> | Backend database name and its URL. Currently, only the MS Azure SQL database is certified. |
BACKEND_DB_DRIVER_CLASS | com.microsoft.sqlserver.jdbc.SQLServerDriver | Driver class name based on the backend db. Do not change the value for this pre-defined property. |
BACKEND_DB_TYPE | SQL-Server | Currently, only the MS Azure SQL database is certified. Do not change the value for this pre-defined property. |
BACKEND_DB_DIALECT | org.hibernate.dialect.SQLServer2008Dialect | Currently, only the MS Azure SQL database is certified. Do not change the value for this pre-defined property. |
LOG_DB_DRIVER_CLASS | com.microsoft.sqlserver.jdbc.SQLServerDriver | Driver class name based on the log db. Do not change the value for this pre-defined property. |
LOG_DB_URL | <User defined> | Log database name and its URL. Currently, only the MS Azure SQL database is certified. |
LOG_DB_TYPE | SQL-Server | Currently, only the MS Azure SQL database is certified. Do not change the value for this pre-defined property. |
LOG_DB_DIALECT | org.hibernate.dialect.SQLServer2008Dialect | Currently, only the MS Azure SQL database is certified. Do not change the value for this pre-defined property. |
LOG_ARCHIVE_DB_URL | <User defined> | Log archive database name and its URL. Currently, only the MS Azure SQL database is certified. |
LOG_ARCHIVE_DB_DRIVER_CLASS | com.microsoft.sqlserver.jdbc.SQLServerDriver | Driver class name based on the log archive db. Do not change the value for this pre-defined property. |
LOG_ARCHIVE_DB_TYPE | SQL-Server | Currently, only the MS Azure SQL database is certified. Do not change the value for this pre-defined property. |
LOG_ARCHIVE_DB_DIALECT | org.hibernate.dialect.SQLServer2008Dialect | Currently, only the MS Azure SQL database is certified. Do not change the value for this pre-defined property. |
QUARTZ_DB_URL | <User defined> | Quartz database name and its URL. Currently, only the MS Azure SQL database is certified. This value will be the same as that for the backend database. |
QUARTZ_DB_DRIVER_CLASS | com.microsoft.sqlserver.jdbc.SQLServerDriver | Driver class name based on the quartz db. This value will be the same as that for the backend database. |
QUARTZ_DB_TYPE | SQL-Server | Currently, only the MS Azure SQL database is certified. Do not change the value for this pre-defined property. |
QUARTZ_DB_DIALECT | org.hibernate.dialect.SQLServer2008Dialect | Currently, only the MS Azure SQL database is certified. Do not change the value for this pre-defined property. This value will be the same as that for the backend database. |
Defining required Secrets properties
You need to set these properties only when you're using external Secrets. If you're not using external Secrets, skip to the next step.
The following table contains the properties to be set if you're using an external tool such as 'Vault' for managing Secrets. Refer to this page to know more about configuring Secrets.
Property | Value | Description |
---|---|---|
config.image.pullSecret.enabled | true (Default) | If set to false, external Secrets will be used. |
infra.secret.enabled | false (Default) | You'd need to set this value to true to work with external Secrets. |
infra.secret.vaultMountPoint | Authentication method that you have created in the external tool. | |
infra.secret.vaultRole | Role that you've created in the tool. | |
infra.secret.dbDataFrom | Path of the database Secret created in the tool. | |
infra.secret.imageDataFrom | Path of the image Secret created in the tool. | |
infra.secret.env.VAULT_ADDR | URL of the external tool such as Vault. |
Running the helm command for installation
Once you've set the properties in values.yaml file, you can run the following command to install the application.
helm install <Name of the release> <Name of the repository> -f <Path of the values.yaml file>
For example,
helm install adeptia adeptia-connect adeptia -f values.yaml
Where,
- adeptia-connect is the name you want to give to your release.
- adeptia is path of the application within the adeptia repository.
- -f denotes file.
- values.yaml is the values.yaml file.
This command deploys Adeptia Connect on the Kubernetes cluster in the default configuration.
Once you've completed the deployment, you need to configure SSL in Gateway Microservice. To know more about configuring SSL, click here.
Uninstalling Adeptia Connect
If you wish to uninstall the application, run the below command.
helm uninstall <adeptia-connect>
Where,
adeptia-connect is name of the deployment.