Skip to content
Draft
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
6 changes: 6 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,12 @@

## [Unreleased]

### Added

- Support for emitting [OpenLineage](https://openlineage.io/) lineage events via `spec.clusterConfig.openLineage` ([#822]).

[#822]: https://github.com/stackabletech/airflow-operator/pull/822

## [26.7.0] - 2026-07-21

## [26.7.0-rc1] - 2026-07-16
Expand Down
24 changes: 12 additions & 12 deletions Cargo.lock

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

60 changes: 30 additions & 30 deletions Cargo.nix

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

3 changes: 2 additions & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -33,5 +33,6 @@ tokio = { version = "1.52", features = ["full"] }
tracing = "0.1"

[patch."https://github.com/stackabletech/operator-rs.git"]
# stackable-operator = { git = "https://github.com/stackabletech//operator-rs.git", branch = "main" }
# TODO: Switch back to a release tag once operator-rs#1250 (crd::openlineage) has merged.
stackable-operator = { git = "https://github.com/stackabletech//operator-rs.git", branch = "feat/openlineage-crd" }
# stackable-operator = { path = "../operator-rs/crates/stackable-operator" }
18 changes: 9 additions & 9 deletions crate-hashes.json

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

11 changes: 11 additions & 0 deletions deploy/helm/airflow-operator/templates/clusterrole-operator.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -133,6 +133,17 @@ rules:
- get
- list
- watch
# Resolve OpenLineage connections referenced by spec.clusterConfig.openLineage.
# Watched (list + watch) to re-reconcile when an OpenLineageConnection changes,
# and fetched individually (get) during reconciliation to dereference a `reference`.
- apiGroups:
- openlineage.stackable.tech
resources:
- openlineageconnections
verbs:
- get
- list
- watch
# Publish Kubernetes events for reconciliation activity
- apiGroups:
- events.k8s.io
Expand Down
Loading