Skip to content

Commit 2b607df

Browse files
Move the git-sync implementation to operator-rs
1 parent f8a984d commit 2b607df

File tree

10 files changed

+162
-595
lines changed

10 files changed

+162
-595
lines changed

CHANGELOG.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -20,6 +20,7 @@
2020
- BREAKING: Inject the vector aggregator address into the vector config using the env var `VECTOR_AGGREGATOR_ADDRESS` instead
2121
of having the operator write it to the vector config ([#600]).
2222
- test: Bump to Vector 0.46.1 ([#620]).
23+
- Move the git-sync implementation to operator-rs ([#623]). The functionality should not have changed.
2324

2425
### Fixed
2526

@@ -32,6 +33,7 @@
3233
[#608]: https://github.com/stackabletech/airflow-operator/pull/608
3334
[#613]: https://github.com/stackabletech/airflow-operator/pull/613
3435
[#620]: https://github.com/stackabletech/airflow-operator/pull/620
36+
[#623]: https://github.com/stackabletech/airflow-operator/pull/623
3537

3638
## [25.3.0] - 2025-03-21
3739

Cargo.lock

Lines changed: 7 additions & 7 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Cargo.nix

Lines changed: 21 additions & 21 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Cargo.toml

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -33,3 +33,6 @@ tracing = "0.1"
3333
# [patch."https://github.com/stackabletech/operator-rs.git"]
3434
# stackable-operator = { git = "https://github.com/stackabletech//operator-rs.git", branch = "main" }
3535
# stackable-operator = { path = "../operator-rs/crates/stackable-operator" }
36+
37+
[patch."https://github.com/stackabletech/operator-rs.git"]
38+
stackable-operator = { git = "https://github.com/stackabletech//operator-rs.git", branch = "feat/git-sync-without-pr968" }

crate-hashes.json

Lines changed: 7 additions & 7 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

deploy/helm/airflow-operator/crds/crds.yaml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -539,7 +539,7 @@ spec:
539539
branch:
540540
default: main
541541
description: |-
542-
The branch to clone. Defaults to `main`.
542+
The branch to clone; defaults to `main`.
543543
544544
Since git-sync v4.x.x this field is mapped to the flag `--ref`.
545545
type: string
@@ -549,7 +549,7 @@ spec:
549549
type: string
550550
depth:
551551
default: 1
552-
description: The depth of syncing i.e. the number of commits to clone; defaults to 1.
552+
description: The depth of syncing, i.e. the number of commits to clone; defaults to 1.
553553
format: uint32
554554
minimum: 0.0
555555
type: integer
@@ -572,7 +572,7 @@ spec:
572572
wait:
573573
default: 20s
574574
description: |-
575-
The synchronization interval, e.g. `20s` or `5m`, defaults to `20s`.
575+
The synchronization interval, e.g. `20s` or `5m`; defaults to `20s`.
576576
577577
Since git-sync v4.x.x this field is mapped to the flag `--period`.
578578
type: string

0 commit comments

Comments
 (0)