1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
use Debug;
use ;
use ;
use DeserializeOwned;
use json;
use info;
use crateResult;
use crate;
use crate;
// ---------------------------------------------------------------------------
// Private core helpers
// ---------------------------------------------------------------------------
async
// ---------------------------------------------------------------------------
// Generic public API
// ---------------------------------------------------------------------------
/// Add a finalizer to a Kubernetes resource using a strategic merge patch.
///
/// Existing finalizers are preserved — only the new one is appended.
///
/// Pass [`Cluster`] or [`Namespaced`] as the `scope` argument to select the
/// correct API surface at compile time. Prefer [`add_finalizer_namespaced`]
/// or [`add_finalizer_cluster`] for the common cases — they are thin wrappers
/// around this function.
///
/// # Examples
///
/// ```no_run
/// use koprs::error::KubeGenericError;
/// use kube::Client;
/// use koprs::finalizers::add_finalizer;
/// use koprs::scope::Namespaced;
/// use koprs::traits::NamespacedResource;
///
/// # async fn example<MyCR: NamespacedResource>(client: Client) -> Result<(), KubeGenericError> {
/// add_finalizer::<MyCR, _>(
/// client,
/// Namespaced("my-namespace"),
/// "my-resource",
/// "my-operator/cleanup",
/// ).await?;
/// # Ok(())
/// # }
/// ```
pub async
/// Remove all finalizers from a Kubernetes resource.
///
/// Sets `metadata.finalizers` to `null`, which unblocks deletion of any
/// resource that was held by finalizers.
///
/// Pass [`Cluster`] or [`Namespaced`] as the `scope` argument to select the
/// correct API surface at compile time. Prefer [`remove_finalizers_namespaced`]
/// or [`remove_finalizers_cluster`] for the common cases — they are thin
/// wrappers around this function.
///
/// # Examples
///
/// ```no_run
/// use koprs::error::KubeGenericError;
/// use kube::Client;
/// use koprs::finalizers::remove_finalizers;
/// use koprs::scope::Namespaced;
/// use koprs::traits::NamespacedResource;
///
/// # async fn example<MyCR: NamespacedResource>(client: Client) -> Result<(), KubeGenericError> {
/// remove_finalizers::<MyCR, _>(
/// client,
/// Namespaced("my-namespace"),
/// "my-resource",
/// ).await?;
/// # Ok(())
/// # }
/// ```
pub async
// ---------------------------------------------------------------------------
// Convenience wrappers — namespaced
// ---------------------------------------------------------------------------
/// Add a finalizer to a **namespace-scoped** resource.
///
/// Delegates to [`add_finalizer`] with [`Namespaced`] as the scope. The
/// resource type `T` must implement [`NamespacedResource`], which the compiler
/// enforces — passing a cluster-scoped type is a compile error.
///
/// # Examples
///
/// ```no_run
/// use koprs::error::KubeGenericError;
/// use kube::Client;
/// use koprs::finalizers::add_finalizer_namespaced;
/// use koprs::traits::NamespacedResource;
///
/// # async fn example<MyCR: NamespacedResource>(client: Client) -> Result<(), KubeGenericError> {
/// add_finalizer_namespaced::<MyCR>(
/// client,
/// "my-namespace",
/// "my-resource",
/// "my-operator/cleanup",
/// ).await?;
/// # Ok(())
/// # }
/// ```
pub async
/// Remove all finalizers from a **namespace-scoped** resource.
///
/// Delegates to [`remove_finalizers`] with [`Namespaced`] as the scope. Sets
/// `metadata.finalizers` to `null`, unblocking deletion. The resource type
/// `T` must implement [`NamespacedResource`].
///
/// # Examples
///
/// ```no_run
/// use koprs::error::KubeGenericError;
/// use kube::Client;
/// use koprs::finalizers::remove_finalizers_namespaced;
/// use koprs::traits::NamespacedResource;
///
/// # async fn example<MyCR: NamespacedResource>(client: Client) -> Result<(), KubeGenericError> {
/// remove_finalizers_namespaced::<MyCR>(
/// client,
/// "my-namespace",
/// "my-resource",
/// ).await?;
/// # Ok(())
/// # }
/// ```
pub async
// ---------------------------------------------------------------------------
// Convenience wrappers — cluster-scoped
// ---------------------------------------------------------------------------
/// Add a finalizer to a **cluster-scoped** resource.
///
/// Delegates to [`add_finalizer`] with [`Cluster`] as the scope. The resource
/// type `T` must implement [`ClusterResource`], which the compiler enforces —
/// passing a namespace-scoped type is a compile error.
///
/// # Examples
///
/// ```no_run
/// use koprs::error::KubeGenericError;
/// use kube::Client;
/// use koprs::finalizers::add_finalizer_cluster;
/// use koprs::traits::ClusterResource;
///
/// # async fn example<MyCR: ClusterResource>(client: Client) -> Result<(), KubeGenericError> {
/// add_finalizer_cluster::<MyCR>(
/// client,
/// "my-resource",
/// "my-operator/cleanup",
/// ).await?;
/// # Ok(())
/// # }
/// ```
pub async
/// Remove all finalizers from a **cluster-scoped** resource.
///
/// Delegates to [`remove_finalizers`] with [`Cluster`] as the scope. Sets
/// `metadata.finalizers` to `null`, unblocking deletion. The resource type
/// `T` must implement [`ClusterResource`].
///
/// # Examples
///
/// ```no_run
/// use koprs::error::KubeGenericError;
/// use kube::Client;
/// use koprs::finalizers::remove_finalizers_cluster;
/// use koprs::traits::ClusterResource;
///
/// # async fn example<MyCR: ClusterResource>(client: Client) -> Result<(), KubeGenericError> {
/// remove_finalizers_cluster::<MyCR>(
/// client,
/// "my-resource",
/// ).await?;
/// # Ok(())
/// # }
/// ```
pub async