-
Notifications
You must be signed in to change notification settings - Fork 6
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #10 from azure-javaee/edburns-msft-em-5413-cargotr…
…acker-liberty-aks-ee-10 On branch edburns-msft-em-5413-cargotracker-liberty-aks-ee-10
- Loading branch information
Showing
155 changed files
with
3,684 additions
and
2,895 deletions.
There are no files selected for viewing
Empty file.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Empty file.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,11 +1,13 @@ | ||
export APPINSIGHTS_NAME="appinsights$(date +%s)" | ||
export LIBERTY_AKS_REPO_REF="5c3f60fffdfd1219036bac2e50c51a53a97f21e3" # WASdev/azure.liberty.aks | ||
export RESOURCE_GROUP_NAME="abc1110rg" # customize this | ||
export DB_RESOURCE_NAME="libertydb1110" # PostgreSQL server name, customize this | ||
export DB_SERVER_NAME="${DB_RESOURCE_NAME}.postgres.database.azure.com" # PostgreSQL host name | ||
export RESOURCE_GROUP_NAME="abc1110rg" # customize this | ||
export LOCATION=eastus # customize this, if desired | ||
|
||
export APPINSIGHTS_NAME="appinsights$(date +%s)" | ||
export DB_NAME=${DB_RESOURCE_NAME} | ||
export DB_PASSWORD="Secret123456" # PostgreSQL database password | ||
export DB_PORT_NUMBER=5432 | ||
export DB_NAME=postgres | ||
export DB_USER=liberty@${DB_RESOURCE_NAME} | ||
export DB_SERVER_NAME="${DB_RESOURCE_NAME}.postgres.database.azure.com" # PostgreSQL host name | ||
export DB_USER=liberty${DB_RESOURCE_NAME} | ||
export LIBERTY_AKS_REPO_REF="048e776e9efe2ffed8368812e198c1007ba94b2c" # WASdev/azure.liberty.aks | ||
export NAMESPACE=default | ||
export WORKSPACE_NAME="loga$(date +%s)" | ||
export WORKSPACE_NAME="${RESOURCE_GROUP_NAME}ws" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,5 @@ | ||
FROM payara/server-full | ||
FROM payara/server-full:6.2023.12 | ||
|
||
COPY target/postgresql.jar /tmp | ||
COPY target/cargo-tracker.war /tmp | ||
COPY post-boot-commands.asadmin /opt/payara/config/ | ||
COPY post-boot-commands.asadmin /opt/payara/config/ |
Oops, something went wrong.