This pull request includes changes to the GitHub Actions workflows and related files to improve the setup of the PostgreSQL database and to simplify the codebase. The most important changes include creating a new GitHub Action for setting up a PostgreSQL Flexible Server, removing unnecessary steps in the workflows, and modifying the workflows to use the new action.
GitHub Action creation:
.github/actions/createPostgresqlFlexibleServer/action.yml: Created a new GitHub Action for setting up a PostgreSQL Flexible Server. This action takes several inputs, including the database admin user, database name, password, server name, location, and resource group name. It uses the az postgres flexible-server create command to set up the server and the az postgres flexible-server firewall-rule create command to allow access from Azure services.
Workflow simplification:
.github/workflows/setupWlsAksDependency.yml, .github/workflows/testWlsAksWithDependencyCreation.yml, .github/workflows/testWlsVmAdmin.yml, .github/workflows/testWlsVmCluster.yml, .github/workflows/testWlsVmDynamicCluster.yml: Removed the preflight job and the steps for setting up the PostgreSQL server within the workflows. Instead, these workflows now use the createPostgresqlFlexibleServer action to set up the server. [1][2][3][4][5][6][7][8]
Workflow modification:
.github/workflows/setupWlsAksDependency.yml, .github/workflows/testWlsAksWithDependencyCreation.yml, .github/workflows/testWlsVmAdmin.yml, .github/workflows/testWlsVmCluster.yml, .github/workflows/testWlsVmDynamicCluster.yml: Modified the workflows to use the dbAdminUser and dbServerName environment variables. These variables are used as inputs to the createPostgresqlFlexibleServer action and in the connection string for the database. [1][2][3][4][5][6][7][8][9]
Environment variable addition:
.github/variables/vm-dependencies.env: Added the azCliVersion environment variable. This variable is used in the workflows to specify the version of the Azure CLI to use.
This pull request includes changes to the GitHub Actions workflows and related files to improve the setup of the PostgreSQL database and to simplify the codebase. The most important changes include creating a new GitHub Action for setting up a PostgreSQL Flexible Server, removing unnecessary steps in the workflows, and modifying the workflows to use the new action.
GitHub Action creation:
.github/actions/createPostgresqlFlexibleServer/action.yml
: Created a new GitHub Action for setting up a PostgreSQL Flexible Server. This action takes several inputs, including the database admin user, database name, password, server name, location, and resource group name. It uses theaz postgres flexible-server create
command to set up the server and theaz postgres flexible-server firewall-rule create
command to allow access from Azure services.Workflow simplification:
.github/workflows/setupWlsAksDependency.yml
,.github/workflows/testWlsAksWithDependencyCreation.yml
,.github/workflows/testWlsVmAdmin.yml
,.github/workflows/testWlsVmCluster.yml
,.github/workflows/testWlsVmDynamicCluster.yml
: Removed the preflight job and the steps for setting up the PostgreSQL server within the workflows. Instead, these workflows now use thecreatePostgresqlFlexibleServer
action to set up the server. [1] [2] [3] [4] [5] [6] [7] [8]Workflow modification:
.github/workflows/setupWlsAksDependency.yml
,.github/workflows/testWlsAksWithDependencyCreation.yml
,.github/workflows/testWlsVmAdmin.yml
,.github/workflows/testWlsVmCluster.yml
,.github/workflows/testWlsVmDynamicCluster.yml
: Modified the workflows to use thedbAdminUser
anddbServerName
environment variables. These variables are used as inputs to thecreatePostgresqlFlexibleServer
action and in the connection string for the database. [1] [2] [3] [4] [5] [6] [7] [8] [9]Environment variable addition:
.github/variables/vm-dependencies.env
: Added theazCliVersion
environment variable. This variable is used in the workflows to specify the version of the Azure CLI to use.