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
3 changes: 3 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,9 @@ versioning for public release policy decisions.
## [Unreleased]

<!-- core-ops-release:start -->
### Changed

- Wire `immich-db-password` Podman secret + `DB_PASSWORD_FILE` env var into `examples/03-immich/services/immich-server/quadlet/immich-server.container`; without these, `immich-server` could never authenticate to the Postgres database started by `immich-database.container` and entered a restart loop with `password authentication failed for user "immich"`.
<!-- core-ops-release:end -->

## [2.2.1] - 2026-05-07
Expand Down
2 changes: 1 addition & 1 deletion Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "core-ops"
version = "2.2.1"
version = "2.2.2"
edition = "2021"
license = "AGPL-3.0-or-later"

Expand Down
7 changes: 7 additions & 0 deletions changes/fix-immich-server-db-password.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
---
change_id: fix-immich-server-db-password
release_intent: patch
summary: Wire `immich-db-password` Podman secret + `DB_PASSWORD_FILE` env var into `examples/03-immich/services/immich-server/quadlet/immich-server.container`; without these, `immich-server` could never authenticate to the Postgres database started by `immich-database.container` and entered a restart loop with `password authentication failed for user "immich"`.
scope: examples
release_preparation: false
---
Original file line number Diff line number Diff line change
Expand Up @@ -14,8 +14,10 @@ Environment=DB_HOSTNAME=immich-database
Environment=DB_PORT=5432
Environment=DB_USERNAME=immich
Environment=DB_DATABASE_NAME=immich
Environment=DB_PASSWORD_FILE=/run/secrets/immich-db-password
Environment=REDIS_HOSTNAME=immich-redis
Environment=IMMICH_MACHINE_LEARNING_URL=http://immich-ml:3003
Secret=immich-db-password,target=/run/secrets/immich-db-password

[Service]
Restart=always
Expand Down
2 changes: 1 addition & 1 deletion tests/fixtures/provenance_state/valid-success.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"schema_version": 1,
"controller": {
"version": "2.2.1",
"version": "2.2.2",
"revision": "8f3c2ab",
"build_time": "2026-03-23T10:00:00Z",
"tree_state": "clean"
Expand Down
Loading