-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Amninder Kaur
committed
Jan 12, 2024
1 parent
fa4b026
commit bcb56a8
Showing
3 changed files
with
25 additions
and
3 deletions.
There are no files selected for viewing
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
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
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 |
---|---|---|
@@ -0,0 +1,22 @@ | ||
LOCAL_HOST_IP=$(ifconfig en0 | grep inet | grep -v inet6 | awk '{print $2}') | ||
|
||
K8S_NAMESPACE=dev | ||
REGISTRY_URL=ksp | ||
#IMAGE_TAG=$(git rev-parse --short HEAD) | ||
IMAGE_TAG=dev | ||
|
||
SERVICE_NAME=lock-manager | ||
SERVICE_PORT=60001 | ||
|
||
# POSTGRES | ||
PGHOST=$LOCAL_HOST_IP | ||
PGPORT= | ||
PGUSER= | ||
PGPASSWORD= | ||
PGDATABASE= | ||
PGMINPOOLSIZE=10 | ||
|
||
#DATABASE_URL=postgres://$PGUSER:$PGPASSWORD@$PGHOST:$PGPORT/$PGDATABASE?sslmode=disable | ||
|
||
RENEW_BY_IN_SEC=60 | ||
ENVIRONMENT=dev |