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

## [Unreleased]

## [24.11.1-rc3] - 2025-01-09

## [24.11.1-rc2] - 2024-12-12

## [24.11.1-rc1] - 2024-12-05
Expand Down
4 changes: 2 additions & 2 deletions Cargo.lock

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

4 changes: 2 additions & 2 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 @@ -3,7 +3,7 @@ members = ["rust/crd", "rust/operator-binary"]
resolver = "2"

[workspace.package]
version = "24.11.1-rc2"
version = "24.11.1-rc3"
authors = ["Stackable GmbH <info@stackable.tech>"]
license = "OSL-3.0"
edition = "2021"
Expand Down
4 changes: 2 additions & 2 deletions deploy/helm/airflow-operator/Chart.yaml
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
---
apiVersion: v2
name: airflow-operator
version: "24.11.1-rc2"
appVersion: "24.11.1-rc2"
version: "24.11.1-rc3"
appVersion: "24.11.1-rc3"
description: The Stackable Operator for Apache Airflow
home: https://github.com/stackabletech/airflow-operator
maintainers:
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -44,20 +44,20 @@ echo "Updating Helm repo"
helm repo update
echo "Installing Operators with Helm"
# tag::helm-install-operators[]
helm install --wait commons-operator stackable-stable/commons-operator --version 24.11.1-rc2
helm install --wait secret-operator stackable-stable/secret-operator --version 24.11.1-rc2
helm install --wait listener-operator stackable-stable/listener-operator --version 24.11.1-rc2
helm install --wait airflow-operator stackable-stable/airflow-operator --version 24.11.1-rc2
helm install --wait commons-operator stackable-stable/commons-operator --version 24.11.1-rc3
helm install --wait secret-operator stackable-stable/secret-operator --version 24.11.1-rc3
helm install --wait listener-operator stackable-stable/listener-operator --version 24.11.1-rc3
helm install --wait airflow-operator stackable-stable/airflow-operator --version 24.11.1-rc3
# end::helm-install-operators[]
;;
"stackablectl")
echo "installing Operators with stackablectl"
# tag::stackablectl-install-operators[]
stackablectl operator install \
commons=24.11.1-rc2 \
secret=24.11.1-rc2 \
listener=24.11.1-rc2 \
airflow=24.11.1-rc2
commons=24.11.1-rc3 \
secret=24.11.1-rc3 \
listener=24.11.1-rc3 \
airflow=24.11.1-rc3
# end::stackablectl-install-operators[]
;;
*)
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
Installed commons=24.11.1-rc2 operator
Installed secret=24.11.1-rc2 operator
Installed listener=24.11.1-rc2 operator
Installed airflow=24.11.1-rc2 operator
Installed commons=24.11.1-rc3 operator
Installed secret=24.11.1-rc3 operator
Installed listener=24.11.1-rc3 operator
Installed airflow=24.11.1-rc3 operator
8 changes: 4 additions & 4 deletions docs/templating_vars.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -3,9 +3,9 @@ helm:
repo_name: stackable-stable
repo_url: https://repo.stackable.tech/repository/helm-stable/
versions:
commons: 24.11.1-rc2
secret: 24.11.1-rc2
listener: 24.11.1-rc2
airflow: 24.11.1-rc2
commons: 24.11.1-rc3
secret: 24.11.1-rc3
listener: 24.11.1-rc3
airflow: 24.11.1-rc3
postgresql: 12.1.5
redis: 17.3.7
10 changes: 5 additions & 5 deletions tests/release.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -7,12 +7,12 @@ releases:
description: Integration test
products:
commons:
operatorVersion: 24.11.1-rc2
operatorVersion: 24.11.1-rc3
secret:
operatorVersion: 24.11.1-rc2
operatorVersion: 24.11.1-rc3
listener:
operatorVersion: 24.11.1-rc2
operatorVersion: 24.11.1-rc3
airflow:
operatorVersion: 24.11.1-rc2
operatorVersion: 24.11.1-rc3
spark-k8s:
operatorVersion: 24.11.1-rc2
operatorVersion: 24.11.1-rc3
Loading