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
//! Kubernetes operator framework for Rust
//!
//! Kubus provides a `#[kubus]` macro for building Kubernetes operators with minimal boilerplate.
//! It wraps [kube-rs](https://kube.rs) controllers with an ergonomic function-based API.
//!
//! # Examples
//!
//! ## Basic operator
//!
//! ```rust,no_run
//! use std::{sync::Arc, time::Duration};
//! use k8s_openapi::api::core::v1::Pod;
//! use kube::{Client, ResourceExt};
//! use kubus::{Context, HandlerError, Operator, kubus};
//!
//! #[tokio::main]
//! async fn main() -> Result<(), kubus::Error> {
//! let client = Client::try_default().await?;
//!
//! Operator::builder()
//! .with_context(client)
//! .handler(on_pod)
//! .run()
//! .await
//! }
//!
//! #[kubus(event = Apply)]
//! async fn on_pod(pod: Arc<Pod>, _ctx: Arc<Context>) -> Result<(), HandlerError> {
//! println!("Pod {} in namespace {}",
//! pod.name_unchecked(),
//! pod.namespace().unwrap()
//! );
//! Ok(())
//! }
//! ```
//!
//! ## Multiple handlers with label selectors
//!
//! ```rust,no_run
//! use std::{sync::Arc, time::Duration};
//! use k8s_openapi::api::core::v1::Pod;
//! use kube::{Client, ResourceExt};
//! use kubus::{Context, HandlerError, Operator, kubus};
//!
//! #[tokio::main]
//! async fn main() -> Result<(), kubus::Error> {
//! let client = Client::try_default().await?;
//!
//! Operator::builder()
//! .with_context(client)
//! .handler(on_pod_apply)
//! .handler(on_pod_delete)
//! .run()
//! .await
//! }
//!
//! #[kubus(
//! event = Apply,
//! label_selector = "app.kubernetes.io/managed-by=kubus"
//! )]
//! async fn on_pod_apply(pod: Arc<Pod>, _ctx: Arc<Context>) -> Result<(), HandlerError> {
//! println!("Apply: {}", pod.name_unchecked());
//! Ok(())
//! }
//!
//! #[kubus(
//! event = Delete,
//! label_selector = "app.kubernetes.io/managed-by=kubus"
//! )]
//! async fn on_pod_delete(pod: Arc<Pod>, _ctx: Arc<Context>) -> Result<(), HandlerError> {
//! println!("Delete: {}", pod.name_unchecked());
//! Ok(())
//! }
//! ```
//!
//! ## Custom state and finalizers
//!
//! ```rust,no_run
//! use std::{sync::Arc, time::Duration};
//! use k8s_openapi::api::core::v1::ConfigMap;
//! use kube::{Client, ResourceExt};
//! use kubus::{Context, HandlerError, Operator, kubus};
//!
//! #[derive(Debug, Clone)]
//! struct State {
//! db_pool: String,
//! }
//!
//! #[tokio::main]
//! async fn main() -> Result<(), kubus::Error> {
//! let client = Client::try_default().await?;
//! let state = State { db_pool: "connection_string".to_string() };
//!
//! Operator::builder()
//! .with_context((client, state))
//! .handler(on_configmap_apply)
//! .handler(on_configmap_delete)
//! .run()
//! .await
//! }
//!
//! #[kubus(event = Apply, finalizer = "kubus.io/cleanup")]
//! async fn on_configmap_apply(
//! cm: Arc<ConfigMap>,
//! ctx: Arc<Context<State>>
//! ) -> Result<(), HandlerError> {
//! println!("ConfigMap {} - db: {}", cm.name_unchecked(), ctx.data.db_pool);
//! Ok(())
//! }
//!
//! #[kubus(event = Delete, finalizer = "kubus.io/cleanup")]
//! async fn on_configmap_delete(
//! cm: Arc<ConfigMap>,
//! _ctx: Arc<Context<State>>
//! ) -> Result<(), HandlerError> {
//! println!("Cleanup for {}", cm.name_unchecked());
//! Ok(())
//! }
//! ```
/// Errors that can occur during operator execution
/// Result type for Kubus operations
pub type Result<T, E = Error> = Result;
pub use *;
pub use ;
pub use Context;
pub use ;
pub use Operator;
pub use ;
pub use ;
/// Print list of CRD's to stdout as serialized yaml
///
/// ```rust,no_run
/// print_crds![Database, Backup];
/// ```
;
let yaml = to_string.unwrap;
let mut stdout = stdout;
stdout.write_all?;
}};
}