You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: docs/platform/pgadmin.md
+29-4Lines changed: 29 additions & 4 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -33,6 +33,17 @@ Credentials are automatically injected into the pgAdmin pod via the 1Password Op
33
33
34
34
After logging in to pgAdmin, you'll need to register the PostgreSQL server to manage it:
35
35
36
+
### Verify PostgreSQL Service Name
37
+
38
+
First, verify the PostgreSQL service name and namespace:
39
+
40
+
```bash
41
+
kubectl -n db-postgres get svc
42
+
# Look for: postgres-postgresql
43
+
```
44
+
45
+
### Add Server in pgAdmin
46
+
36
47
1. Click **"Add New Server"** in the pgAdmin dashboard
37
48
2. In the **General** tab:
38
49
-**Name**: `Coachlight Postgres` (or any descriptive name)
@@ -46,6 +57,8 @@ After logging in to pgAdmin, you'll need to register the PostgreSQL server to ma
46
57
-**DB restriction**: Leave blank to see all databases
47
58
5. Click **Save**
48
59
60
+
> **Note**: The hostname `postgres-postgresql.db-postgres.svc.cluster.local` assumes the PostgreSQL service is named `postgres-postgresql` in the `db-postgres` namespace. Verify the actual service name if connection fails.
0 commit comments