Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12 changes: 12 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,18 @@ All notable changes to the Dakera deployment configurations will be documented i

## [Unreleased]

## [0.9.0] - 2026-06-25

### Changed

- **Bump default Dakera image to `:latest` across all deployment configs** — removes the stale pinned tags (`optA-baked-ec6ef91` and `0.11.81`) that were 13–30+ server releases behind. All files now default to `ghcr.io/dakera-ai/dakera:latest` which tracks the current stable release automatically. CTO confirmed: all official images since `v0.11.89+` (DAK-6224) include ONNX embedding files — the cold-boot concern that motivated the original pin is resolved.
- `docker/docker-compose.yml`: `optA-baked-ec6ef91` → `:latest` ([#243](https://github.com/Dakera-AI/dakera-deploy/pull/243))
- `docker/docker-compose.ha.yml`: `optA-baked-ec6ef91` → `:latest`
- `docker/docker-compose.local.yml`: `0.11.81` → `:latest`
- `k8s/dakera/deployment.yaml`: `optA-baked-ec6ef91` → `:latest`

Operators who need a pinned version can still override via `DAKERA_IMAGE=ghcr.io/dakera-ai/dakera:v0.11.94` in their `.env` file. The `${DAKERA_IMAGE:-...}` pattern is preserved in all compose files.

## [0.8.0] - 2026-05-29

### Changed
Expand Down
2 changes: 1 addition & 1 deletion docker/docker-compose.ha.yml
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@
name: dakera-ha

x-dakera-common: &dakera-common
image: ${DAKERA_IMAGE:-ghcr.io/dakera-ai/dakera:optA-baked-ec6ef91}
image: ${DAKERA_IMAGE:-ghcr.io/dakera-ai/dakera:latest}
restart: unless-stopped
networks:
- dakera-ha-net
Expand Down
2 changes: 1 addition & 1 deletion docker/docker-compose.local.yml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
services:
dakera:
image: ${DAKERA_IMAGE:-ghcr.io/dakera-ai/dakera:0.11.81}
image: ${DAKERA_IMAGE:-ghcr.io/dakera-ai/dakera:latest}
ports:
- "3000:3000"
- "50051:50051"
Expand Down
2 changes: 1 addition & 1 deletion k8s/dakera/deployment.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ spec:
terminationGracePeriodSeconds: 30
containers:
- name: dakera
image: ghcr.io/dakera-ai/dakera:optA-baked-ec6ef91
image: ghcr.io/dakera-ai/dakera:latest
imagePullPolicy: IfNotPresent
ports:
- name: http
Expand Down