Appendix I: Creating an Environment Variable

While deploying, or configuring a feature in Adeptia Connect, you may need some environment variables to be used to pass a value or an argument. Some of the variables may get the values from the values.yaml file at the time of deployment, while the others may need to be set when you're configuring a feature. The environment variables are of use in cases including database configuration, logging, migration, SAML SSO, etc.

Adeptia Connect provides you with a list of environment variables that are used for different purposes. Based on your requirement, you need to create the environment variables with the same name as provided to you. The process for creating environment variables differs for different operating systems. This page guides you on how to create an environment variable in Windows and Linux operating systems.

Creating an Environment Variable in Windows

  1. Open Control Panel, and select System.

  2. Click Advanced system settings.

  3. On the System Properties window, select Advanced and click Environment Variables.
  4. On the Environment Variables window, in the User variables for user click New.
  5. In the Variable name and Variable value fields, provide the required variable name and its value respectively. 
  6. Click OK

Creating an Environment Variable in Linux

  1. On the Command Prompt, enter the name of the variable followed by its value as shown in the example below.

    Var1="This is an example variable"
  2. Run the set | grep command to confirm the creation of variable as shown below.

    set | grep Var1

    Where, Var1 is the name of the variable.