Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
28 commits
Select commit Hold shift + click to select a range
f6efcbe
feat: Implement generic database connection
sbernauer Mar 3, 2026
b035622
fix: Add to Pod template as well
sbernauer Mar 3, 2026
a67081b
Bump op-rs
sbernauer Mar 3, 2026
cfb0481
Fix tests
sbernauer Mar 3, 2026
c00b629
Update kuttl tests
sbernauer Mar 3, 2026
30c83e2
Update docs
sbernauer Mar 3, 2026
ba6c88d
Further update docs
sbernauer Mar 3, 2026
b2bf77b
Merge branch 'main' into feat/generic-database-connection
sbernauer Mar 4, 2026
a850a8a
bump op-rs
sbernauer Mar 4, 2026
d268bd7
cargo fmt
sbernauer Mar 4, 2026
773f207
Use docs from op-rs
sbernauer Mar 4, 2026
28134d0
Merge remote-tracking branch 'origin/main' into feat/generic-database…
sbernauer Mar 31, 2026
b03457b
Bump op-rs
sbernauer Mar 31, 2026
e82310a
Impl Deref for database connection enums
sbernauer Apr 1, 2026
0008a85
Some docs
sbernauer Apr 20, 2026
fda8025
Merge remote-tracking branch 'origin/main' into feat/generic-database…
sbernauer Apr 20, 2026
a7134da
Rename celeryResultBackend -> ResultBackend and celeryBroker -> broker
sbernauer Apr 20, 2026
856102d
Merge branch 'main' into feat/generic-database-connection
sbernauer Apr 20, 2026
2d6a2c8
WIP changelog
sbernauer Apr 21, 2026
c11d559
changelog
sbernauer Apr 21, 2026
13456ec
changelog
sbernauer Apr 21, 2026
22a55af
Fix some leftover credentialsSecret renames
sbernauer Apr 21, 2026
f7812c2
test: Fix ca-cert test
sbernauer Apr 21, 2026
63e1f6d
More test fixes
sbernauer Apr 21, 2026
5c70a74
Fix more tests
sbernauer Apr 21, 2026
fd235cc
Update tests/templates/kuttl/versioning/30-install-airflow-cluster.ya…
sbernauer Apr 22, 2026
4b6d398
Merge branch 'main' into feat/generic-database-connection
sbernauer Apr 22, 2026
29bac89
yaml linter
sbernauer Apr 22, 2026
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
6 changes: 6 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,11 @@
- BREAKING: `configOverrides` now only accepts the known config file `webserver_config.py`. Previously, arbitrary file names were silently accepted and ignored ([#775]).
- Bump `stackable-operator` to 0.110.1, kube to 3.1.0, and snafu to 0.9 ([#775]).
- BREAKING: Rename `EXPERIMENTAL_FILE_HEADER` and `EXPERIMENTAL_FILE_FOOTER` in `webserver_config.py` for arbitrary python code to `FILE_HEADER` and `FILE_FOOTER` ([#775], [#777]).
- BREAKING: The `.clusterConfig.credentialsSecret` field has been renamed to `.clusterConfig.credentialsSecretName` for consistency ([#754]).
Comment thread
adwk67 marked this conversation as resolved.
- BREAKING: Implement generic database connection.
This means you need to replace your simple database connection string with a typed struct.
This struct is consistent between different CRDs, so that you can easily copy/paste it between stacklets.
Read on the [Airflow database documentation](https://docs.stackable.tech/home/nightly/airflow/usage-guide/database-connections) for details ([#754]).

### Fixed

Expand All @@ -25,6 +30,7 @@
[#774]: https://github.com/stackabletech/airflow-operator/pull/774
[#775]: https://github.com/stackabletech/airflow-operator/pull/775
[#777]: https://github.com/stackabletech/airflow-operator/pull/777
[#754]: https://github.com/stackabletech/airflow-operator/pull/754

## [26.3.0] - 2026-03-16

Expand Down
57 changes: 40 additions & 17 deletions Cargo.lock

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

Loading
Loading