Skip to content

Commit dac05f0

Browse files
authored
docs: update self hosted section (#1230)
1 parent 9084cee commit dac05f0

File tree

1 file changed

+5
-8
lines changed

1 file changed

+5
-8
lines changed

docs/reference/self-hosted/installation.md

Lines changed: 5 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -20,15 +20,14 @@ You will require image pull secrets to pull down the docker images from our priv
2020

2121
The Helm chart does not include a production-ready Postgres Database (only a development instance). You will be required to connect to, and create databases on a Postgres instance.
2222

23-
You will need to create 4 databases, that are used for different things.
23+
You will need to create 3 databases, that are used for different things.
2424

2525
While we are currently working on running **Logfire** on one database, for now they *must* be separated.
2626

27-
The 4 database in question are:
27+
The 3 database in question are:
2828

2929
* Standard Postgres Database, i.e, `crud`
3030
* Object Storage/File Metadata, i.e, `ff`
31-
* Ingest Database, i.e, `ingest`
3231
* Dex i.e, `dex`
3332

3433
While they can be named anything, we will refer to them with these identifiers in this guide.
@@ -92,7 +91,7 @@ Here's a checklist you can use to ensure you have all your prerequisites:
9291
- [ ] Helm CLI Installed
9392
- [ ] Image Pull Secrets
9493
- [ ] Access to a Kubernetes cluster
95-
- [ ] The 4 PostgreSQL database set up
94+
- [ ] The 3 PostgreSQL databases set up
9695
- [ ] Identity Provider Configuration
9796
- [ ] Object Storage Configuration
9897
- [ ] HTTP Ingress information (i.e, hostname etc.)
@@ -112,7 +111,6 @@ imagePullSecrets:
112111
113112
postgresDsn: postgres://postgres:[email protected]:5432/crud
114113
postgresFFDsn: postgres://postgres:[email protected]:5432/ff
115-
postgresIngestDsn: postgres://postgres:[email protected]:5432/ingest
116114
117115
# Configure Dex Postgres & Identity Provider
118116
@@ -179,16 +177,15 @@ imagePullSecrets:
179177

180178
### Postgres Databases
181179

182-
With the 4 databases configured, you will need to configure Logfire & Dex within `values.yaml`.
180+
With the 3 databases configured, you will need to configure Logfire & Dex within `values.yaml`.
183181

184-
The 3 databases for logfire (`crud`, `ff` and `ingest`) can be configured either via the DSNs in `values.yaml` or as a secret.
182+
The 2 databases for logfire (`crud` and `ff`) can be configured either via the DSNs in `values.yaml` or as a secret.
185183

186184
I.e,
187185

188186
```yaml
189187
postgresDsn: postgres://postgres:[email protected]:5432/crud
190188
postgresFFDsn: postgres://postgres:[email protected]:5432/ff
191-
postgresIngestDsn: postgres://postgres:[email protected]:5432/ingest
192189
```
193190

194191
Or if you have a secret containing postgresDsn and postgresFFDsn keys:

0 commit comments

Comments
 (0)