# directory where the FlexDeploy server will be running from # for those that have an installation already, this would be the directory up to apache-flexdeploy-tomcat FLEXDEPLOY_HOME=/u01/flexdeploy # Java home, e.g. /u01/jdk_1.8.343, The Java version must be at least 1.8 FLEXDEPLOY_JAVA_HOME= # this is the folder where the plugins reside and other FlexDeploy generated folders. This is FlexDeploy's working directory. # for those that have an installation already, this would come from the jvm argument -Dflexagon.fd.install.root WORKING_DIRECTORY=${FLEXDEPLOY_HOME}/application # this is the folder where all of the generated artifacts will be stored. This is an extremely important folder. # for those that have an installation already, this would come from the jvm argument -Dflexagon.fd.repository.root ARTIFACT_REPOSITORY_DIRECTORY=${FLEXDEPLOY_HOME}/artifacts # the directory where the database will be backed up to. # If Oracle, this directory is created as a data_pump directory on the database server if it doesn't already exist. # If PostgreSQL, this value is optional. If specified, the database will be backed up using the psql command, which must be available on this local host. # If PostgreSQL, and this value is not specified, the database schemas will be backed up by cloning to another schema in the same database. BACKUP_DATABASE_DIRECTORY= # specify the SCM type that you will be utilizing, this has nothing to do with the install but there is a check that is done when the # type is GIT SCM_TYPE= # this is the limited access database user for flexdeploy. This user will be granted permission to the objects that it needs to run FlexDeploy. # adjust the password as needed. # this user will be created if it does not exist during an install. FLEXDEPLOY_DB_USER=fd_admin FLEXDEPLOY_DB_PASSWORD= # database user/password SYSTEM_DB_USER=system SYSTEM_DB_PASSWORD= FLEXDEPLOY_PORT=8000 # If 0, then the installation process will use the newly downloaded context.xml file and adjust the properties accordingly. If 1, then # the installation process will save the existing context.xml and replace it after the upgrade so there are no changes to it. MAINTAIN_EXISTING_CONTEXT_FILE=0 # If 0, then the installation process will use the newly downloaded server.xml file and adjust the properties accordingly. If 1, then # the installation process will save the existing server.xml and replace it after the upgrade so there are no changes to it. MAINTAIN_EXISTING_SERVER_FILE=0 # this is the folder where the influxDB will be installed INFLUX_DB_DIRECTORY=${FLEXDEPLOY_HOME}/influxdb INFLUX_DB_URL=http://localhost:8086 INFLUX_DB_BUCKET=flexbucket INFLUX_DB_ORG=flexdeploy INFLUX_DB_USER=flexuser INFLUX_DB_PASSWORD=welcome1 # this is the token that will be utilized by FlexDeploy to communicate with the influx database, this value will be updated in the FlexDeploy credential INFLUX_DB_TOKEN= # filling in this property will tell the installation process that you don't want the latest version of the software, if the process can # get through to the internet to auto download the software. Must be a valid FlexDeploy version ALTERNATE_FLEXDEPLOY_SOFTWARE_VERSION= # this is the database url for the Oracle ATP database if needed, the must be changed to the appropriate wallet folder # under the FLEXDEPLOY_HOME stated above. If wallets are placed in the install/downloads/wallets folder as a zip, the installation # process will unzip and place them in the .wallets folder #DATABASE_URL=jdbc:oracle:thin:@service_high?TNS_ADMIN=${FLEXDEPLOY_HOME}/.wallets/ # this is the database url for the Postgresql database #DATABASE_URL="jdbc:postgresql://127.0.0.1:5432/flexdeploy" # this is the database url for the standard Oracle database DATABASE_URL="jdbc:oracle:thin:@(DESCRIPTION=(ADDRESS_LIST=(ADDRESS=(PROTOCOL=tcp)(HOST=fdsls01.flexagon.azure.com)(PORT=1521)))(CONNECT_DATA=(SERVICE_NAME=pflex1)))" # If installing FlexDeploy through Docker you can set the name of the container that will be created by editing the variable below. Defaults to 'flexdeploy' #CONTAINER_NAME=flexdeploy