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

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@
### Added

- Log aggregation added ([#219]).
- Deploy default and support custom affinities ([#241]).

### Changed

Expand All @@ -15,6 +16,7 @@
[#219]: https://github.com/stackabletech/airflow-operator/pull/219
[#233]: https://github.com/stackabletech/spark-k8s-operator/pull/233
[#234]: https://github.com/stackabletech/spark-k8s-operator/pull/234
[#241]: https://github.com/stackabletech/spark-k8s-operator/pull/241

## [23.1.0] - 2023-01-23

Expand Down
50 changes: 46 additions & 4 deletions Cargo.lock

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

2,874 changes: 2,874 additions & 0 deletions deploy/helm/airflow-operator/crds/crds.yaml

Large diffs are not rendered by default.

8 changes: 8 additions & 0 deletions docs/modules/airflow/pages/pod_placement.adoc
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
= Pod Placement

You can configure the Pod placement of the Airflow pods as described in xref:concepts:pod_placement.adoc[].

The default affinities created by the operator are:

1. Co-locate all the Airflow Pods (weight 20)
2. Distribute all Pods within the same role (worker, webserver, scheduler) (weight 70)
1 change: 1 addition & 0 deletions docs/modules/airflow/partials/nav.adoc
Original file line number Diff line number Diff line change
Expand Up @@ -3,3 +3,4 @@
** xref:airflow:getting_started/first_steps.adoc[]
* xref:airflow:configuration.adoc[]
* xref:airflow:usage.adoc[]
* xref:airflow:pod_placement.adoc[]
3 changes: 2 additions & 1 deletion rust/crd/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -12,9 +12,10 @@ publish = false
serde = "1.0"
serde_json = "1.0"
snafu = "0.7"
stackable-operator = { git = "https://github.com/stackabletech/operator-rs.git", tag = "0.34.0" }
stackable-operator = { git = "https://github.com/stackabletech/operator-rs.git", tag = "0.36.0" }
strum = { version = "0.24", features = ["derive"] }
tracing = "0.1"

[dev-dependencies]
serde_yaml = "0.8"
rstest = "0.16"
Loading