-
Notifications
You must be signed in to change notification settings - Fork 27
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
chore: add pgadmin4 instance for database access
- Loading branch information
Showing
5 changed files
with
43 additions
and
0 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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -16,6 +16,7 @@ The chart aims for a completely automated setup of a fully functional network, t | |
- [Data exchange](#data-exchange) | ||
- [Get to know the portal](#get-to-know-the-portal) | ||
- [Uninstall](#uninstall) | ||
- [Database Access](#database-access) | ||
- [Ingresses](#ingresses) | ||
- [Seeding](#seeding) | ||
|
||
|
@@ -367,6 +368,24 @@ helm delete umbrella --namespace umbrella | |
> If persistance for one or more components is enabled, the persistent volume claims (PVCs) and connected persistent volumes (PVs) need to be removed manually even if you deleted the release from the cluster. | ||
> | ||
### Database Access | ||
This chart also contains a pgadmin4 instance for easy access to the deployed Postgres databases which are only available from within the Kubernetes cluster. | ||
pgadmin4 is by default enabled with in the predefined subsets for data exchange and portal. | ||
Address: [pgadmin4.tx.test](http://pgadmin4.tx.test) | ||
Credentials to login: | ||
``` | ||
[email protected] | ||
``` | ||
``` | ||
tractusxpgdamin4 | ||
``` | ||
### Ingresses | ||
Currently enabled ingresses: | ||
|
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 |
---|---|---|
|
@@ -195,3 +195,6 @@ dataconsumerTwo: | |
# primary: | ||
# persistence: | ||
# enabled: true | ||
|
||
pgadmin4: | ||
enabled: true |
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 |
---|---|---|
|
@@ -61,3 +61,6 @@ dataconsumer: | |
|
||
tx-data-provider: | ||
enabled: false | ||
|
||
pgadmin4: | ||
enabled: true |
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 |
---|---|---|
|
@@ -833,3 +833,17 @@ dataconsumerTwo: | |
|
||
simple-data-backend: | ||
enabled: false | ||
|
||
pgadmin4: | ||
enabled: false | ||
env: | ||
email: [email protected] | ||
password: tractusxpgdamin4 | ||
ingress: | ||
enabled: true | ||
ingressClassName: "nginx" | ||
hosts: | ||
- host: pgadmin4.tx.test | ||
paths: | ||
- path: / | ||
pathType: Prefix |