Skip to content

Commit a87a9f0

Browse files
committed
update docs
1 parent 2a2b44b commit a87a9f0

File tree

1 file changed

+6
-8
lines changed

1 file changed

+6
-8
lines changed

docs/self-hosting/kubernetes.mdx

Lines changed: 6 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -202,9 +202,8 @@ You can disable the built-in services and use external services instead. For exa
202202
203203
```yaml
204204
postgres:
205-
enabled: false
206-
external: true
207-
externalConnection:
205+
deploy: false
206+
external:
208207
host: "my-postgres.example.com"
209208
port: 5432
210209
database: "my-database"
@@ -262,10 +261,10 @@ See the [Docker registry setup](/self-hosting/docker#registry-setup) for concept
262261
```yaml
263262
# Use external registry (recommended)
264263
registry:
265-
external: true
264+
deploy: false
266265
# Part of deployment image ref, for example: your-registry.example.com/your-company/proj_123:20250625.1.prod
267266
repositoryNamespace: "your-company"
268-
externalConnection:
267+
external:
269268
host: "your-registry.example.com"
270269
port: 5000
271270
auth:
@@ -285,9 +284,8 @@ See the [Docker object storage setup](/self-hosting/docker#object-storage) for c
285284
```yaml
286285
# Use external S3-compatible storage
287286
minio:
288-
enabled: false
289-
external: true
290-
externalConnection:
287+
deploy: false
288+
external:
291289
url: "https://s3.amazonaws.com"
292290
# or: "https://your-minio.com:9000"
293291

0 commit comments

Comments
 (0)