Skip to content
Open
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: 11 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
assembles all relevant Kubernetes resources before anything is applied ([#814]).
- The RBAC ServiceAccount and RoleBinding are now built with the operator-rs `v2::rbac`
functions and carry the full set of recommended labels ([#821]).
- Bump stackable-operator to 0.114.0 ([#827]).
- Bump stackable-operator to 0.116.0 ([#827], [#838]).
- The reconciler now applies resources and derives the cluster status in discrete
apply and update_status steps ([#828]).
- The level configured for the `airflow.task` logger now sets the level of the `task` handler,
Expand All @@ -23,7 +23,16 @@
the logger as well, because a logger discards records before any handler can filter them, so in
that direction the UI and the other destinations open up together and cannot be set apart
([#829]).
- Remove the `app.kubernetes.io/component` and `app.kubernetes.io/role-group` labels from the
resources they don't apply to (previously set to `none`) ([#838]).
- All product containers now run with `securityContext.runAsNonRoot` set to `true` to improve security ([#840]).
- `envOverrides` names are now validated by the shared `EnvVarName` type rather than by
operator-specific validation code ([#838]).
- Remove the `app.kubernetes.io/component` and `app.kubernetes.io/role-group` labels from the
resources they don't apply to (previously set to `none` or a placeholder value) ([#838]).
- Environment variable overrides (`envOverrides`) are now applied after all environment
variables set by the operator. In particular, `CONTAINERDEBUG_LOG_DIRECTORY` can now be
overridden, whereas previously the operator's value always took precedence ([#838]).

### Fixed

Expand All @@ -40,6 +49,7 @@
[#829]: https://github.com/stackabletech/airflow-operator/pull/829
[#834]: https://github.com/stackabletech/airflow-operator/pull/834
[#835]: https://github.com/stackabletech/airflow-operator/pull/835
[#838]: https://github.com/stackabletech/airflow-operator/pull/838
[#840]: https://github.com/stackabletech/airflow-operator/pull/840
[#844]: https://github.com/stackabletech/airflow-operator/pull/844

Expand Down
20 changes: 10 additions & 10 deletions Cargo.lock

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

48 changes: 27 additions & 21 deletions Cargo.nix

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
Expand Up @@ -13,7 +13,7 @@ repository = "https://github.com/stackabletech/airflow-operator"
stackable-operator = { git = "https://github.com/stackabletech/operator-rs.git", features = [
"crds",
"webhook",
], tag = "stackable-operator-0.115.0" }
], tag = "stackable-operator-0.116.0" }

anyhow = "1.0"
built = { version = "0.8", features = ["chrono", "git2"] }
Expand Down
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.

Loading
Loading