You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
- BREAKING: Add `objectOverrides` field to `ListenerSpec` ([#1136]).
51
+
- Added `stackable_operator::constants::RESTART_CONTROLLER_ENABLED_LABEL` constant, which represents the `restarter.stackable.tech/enabled=true` label ([#1139]).
52
+
7
53
### Changed
8
54
9
55
- Revert and pin k8s-openapi to 0.26.0 ([#1135]).
56
+
- BREAKING: `ListenerSpec` no longer derives `Eq` ([#1136]).
description: 'The git repository URL that will be cloned, for example: `https://github.com/stackabletech/airflow-operator` or `ssh://git@github.com:stackable-airflow/dags.git`.'
146
+
format: uri
147
+
type: string
148
+
wait:
149
+
default: 20s
150
+
description: |-
151
+
The synchronization interval, e.g. `20s` or `5m`; defaults to `20s`.
152
+
153
+
Since git-sync v4.x.x this field is mapped to the flag `--period`.
/// The git repository URL that will be cloned, for example: `https://github.com/stackabletech/airflow-operator`.
27
+
/// The git repository URL that will be cloned, for example: `https://github.com/stackabletech/airflow-operator` or `ssh://git@github.com:stackable-airflow/dags.git`.
24
28
pubrepo:Url,
25
29
26
30
/// The branch to clone; defaults to `main`.
27
31
///
28
32
/// Since git-sync v4.x.x this field is mapped to the flag `--ref`.
29
-
#[serde(default = "GitSync::default_branch")]
33
+
#[serde(default = "default_branch")]
30
34
pubbranch:String,
31
35
32
36
/// Location in the Git repository containing the resource; defaults to the root folder.
33
37
///
34
38
/// It can optionally start with `/`, however, no trailing slash is recommended.
35
39
/// An empty string (``) or slash (`/`) corresponds to the root folder in Git.
36
-
#[serde(default = "GitSync::default_git_folder")]
40
+
#[serde(default = "default_git_folder")]
37
41
pubgit_folder:PathBuf,
38
42
39
43
/// The depth of syncing, i.e. the number of commits to clone; defaults to 1.
40
-
#[serde(default = "GitSync::default_depth")]
44
+
#[serde(default = "default_depth")]
41
45
pubdepth:u32,
42
46
43
47
/// The synchronization interval, e.g. `20s` or `5m`; defaults to `20s`.
44
48
///
45
49
/// Since git-sync v4.x.x this field is mapped to the flag `--period`.
46
-
#[serde(default = "GitSync::default_wait")]
50
+
#[serde(default = "default_wait")]
47
51
pubwait:Duration,
48
52
49
-
/// The name of the Secret used to access the repository if it is not public.
53
+
/// A map of optional configuration settings that are listed in the git-sync [documentation].
54
+
///
55
+
/// Also read the git-sync [example] in our documentation. These settings are not verified.
0 commit comments