Skip to content

Commit 23a611b

Browse files
committed
update ee tag
1 parent 2aafb2c commit 23a611b

2 files changed

Lines changed: 10 additions & 7 deletions

File tree

docs/enterprise_edition/index.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ The demo comes with the control plane, the web UI and PgDog configured as follow
3737
| Web UI | `http://localhost:8099` |
3838
| Username | `demo@pgdog.dev` |
3939
| Password | `demopass` |
40-
| PgDog | `0.0.0.0:6432` |
40+
| PgDog | `postgres://pgdog_control:pgdog_control@0.0.0.0:6432/pgdog_control` |
4141

4242
For questions about the demo, PgDog Enterprise features, or pricing, [contact us](https://calendly.com/lev-pgdog/30min). PgDog can be deployed on-prem, in your cloud account, or entirely managed by us.
4343

@@ -60,12 +60,12 @@ Both PgDog and the control plane are available as Docker images:
6060
| PgDog | `ghcr.io/pgdogdev/pgdog-enterprise` |
6161
| Control plane | `ghcr.io/pgdogdev/pgdog-enterprise/control` |
6262

63-
If you're using our [Helm chart](../installation.md#kubernetes), you just need to change the `image.repository` and `image.tag` variables, for example:
63+
If you're using our [Helm chart](../installation.md#kubernetes), you just need to change the `image.repository` and `image.tag` variables:
6464

6565
```yaml
6666
image:
6767
repository: ghcr.io/pgdogdev/pgdog-enterprise
68-
tag: v2026-03-19
68+
tag: v2026-04-06
6969
```
7070
7171
For deploying the [control plane](control_plane/index.md), you have two options:

docs/examples/control_plane/docker-compose.yaml

Lines changed: 7 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ services:
2424
- redis_data:/data
2525

2626
migrate:
27-
image: ghcr.io/pgdogdev/pgdog-enterprise/control:v2026-03-19
27+
image: ghcr.io/pgdogdev/pgdog-enterprise/control:v2026-04-06
2828
environment:
2929
<<: *control-env
3030
command: control migrate
@@ -33,7 +33,7 @@ services:
3333
condition: service_healthy
3434

3535
init:
36-
image: ghcr.io/pgdogdev/pgdog-enterprise/control:v2026-03-19
36+
image: ghcr.io/pgdogdev/pgdog-enterprise/control:v2026-04-06
3737
environment:
3838
<<: *control-env
3939
command: control onboard --email demo@pgdog.dev --password demopass --token 644b527c-b9d6-4fb2-9861-703bad871ec0 --name Demo
@@ -42,7 +42,7 @@ services:
4242
condition: service_completed_successfully
4343

4444
control:
45-
image: ghcr.io/pgdogdev/pgdog-enterprise/control:v2026-03-19
45+
image: ghcr.io/pgdogdev/pgdog-enterprise/control:v2026-04-06
4646
ports:
4747
- "8099:8080"
4848
environment:
@@ -55,7 +55,7 @@ services:
5555
condition: service_started
5656

5757
pgdog:
58-
image: ghcr.io/pgdogdev/pgdog-enterprise:v2026-03-19
58+
image: ghcr.io/pgdogdev/pgdog-enterprise:v2026-04-06
5959
command: ["pgdog", "--config", "/etc/pgdog/pgdog.toml", "--users", "/etc/secrets/pgdog/users.toml"]
6060
ports:
6161
- "6432:6432"
@@ -96,6 +96,9 @@ configs:
9696
[query_stats]
9797
enabled = true
9898
99+
[qos]
100+
enabled = true
101+
99102
pgdog_users:
100103
content: |
101104
[[users]]

0 commit comments

Comments
 (0)