k8s-maestro 1.0.0

A Kubernetes job orchestrator tool library
Documentation
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
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
//! Client for managing Kubernetes workflows.
//!
//! This module provides the [`MaestroClient`] which is the main entry point
//! for creating and managing workflows in Kubernetes.

use std::path::PathBuf;
use std::time::Duration;

use anyhow::Result;

use crate::steps::traits::ResourceLimits;
use crate::workflows::Workflow;

/// Client for managing Kubernetes workflows.
///
/// The client is configured using [`MaestroClientBuilder`] and provides
/// methods for creating, retrieving, and listing workflows.
///
/// # Example
///
/// ```no_run
/// use k8s_maestro::{MaestroClientBuilder, WorkflowBuilder};
/// use k8s_maestro::steps::traits::{WorkFlowStep, ResourceLimitedStep};
///
/// let client = MaestroClientBuilder::new()
///     .with_namespace("production")
///     .build()
///     .unwrap();
/// ```
pub struct MaestroClient {
    kube_config_path: Option<PathBuf>,
    namespace: String,
    dry_run: bool,
    default_timeout: Option<Duration>,
    log_level: Option<String>,
    default_resource_limits: Option<ResourceLimits>,
}

impl MaestroClient {
    pub(crate) fn new(
        kube_config_path: Option<PathBuf>,
        namespace: String,
        dry_run: bool,
        default_timeout: Option<Duration>,
        log_level: Option<String>,
        default_resource_limits: Option<ResourceLimits>,
    ) -> Self {
        Self {
            kube_config_path,
            namespace,
            dry_run,
            default_timeout,
            log_level,
            default_resource_limits,
        }
    }

    /// Returns the default namespace for operations.
    pub fn namespace(&self) -> &str {
        &self.namespace
    }

    /// Returns whether the client is in dry run mode.
    pub fn dry_run(&self) -> bool {
        self.dry_run
    }

    /// Returns the default timeout for operations.
    pub fn default_timeout(&self) -> Option<&Duration> {
        self.default_timeout.as_ref()
    }

    /// Returns the log level for client operations.
    pub fn log_level(&self) -> Option<&str> {
        self.log_level.as_deref()
    }

    /// Returns the default resource limits for workflows.
    pub fn default_resource_limits(&self) -> Option<&ResourceLimits> {
        self.default_resource_limits.as_ref()
    }

    /// Returns the path to the kubeconfig file.
    pub fn kube_config_path(&self) -> Option<&PathBuf> {
        self.kube_config_path.as_ref()
    }

    /// Creates a new workflow.
    ///
    /// In dry run mode, the workflow is validated but not created.
    ///
    /// # Arguments
    ///
    /// * `workflow` - The workflow to create
    ///
    /// # Errors
    ///
    /// Returns an error if the workflow is invalid.
    ///
    /// # Example
    ///
    /// ```no_run
    /// use k8s_maestro::{MaestroClientBuilder, WorkflowBuilder};
    /// # use k8s_maestro::steps::traits::{WorkFlowStep, ResourceLimitedStep};
    ///
    /// let client = MaestroClientBuilder::new().build().unwrap();
    /// # let step = MockStep::new("test");
    /// let workflow = WorkflowBuilder::new()
    ///     .with_name("my-workflow")
    ///     .add_step(step)
    ///     .build()
    ///     .unwrap();
    ///
    /// let created = client.create_workflow(workflow).unwrap();
    /// ```
    pub fn create_workflow(&self, workflow: Workflow) -> Result<CreatedWorkflow> {
        if self.dry_run {
            log::info!(
                "DRY RUN: Would create workflow '{}' in namespace '{}'",
                workflow.name,
                self.namespace
            );
            return Ok(CreatedWorkflow::DryRun(DryRunWorkflow {
                workflow,
                namespace: self.namespace.clone(),
            }));
        }

        log::info!(
            "Creating workflow '{}' in namespace '{}'",
            workflow.name,
            self.namespace
        );

        workflow.validate()?;

        Ok(CreatedWorkflow::Runtime(RuntimeWorkflow {
            workflow,
            namespace: self.namespace.clone(),
        }))
    }

    /// Retrieves a workflow by ID.
    ///
    /// # Arguments
    ///
    /// * `id` - The workflow ID
    ///
    /// # Returns
    ///
    /// Returns `Ok(None)` if the workflow is not found.
    pub fn get_workflow(&self, _id: &str) -> Result<Option<CreatedWorkflow>> {
        if self.dry_run {
            log::info!("DRY RUN: Would get workflow with id '{}'", _id);
            return Ok(None);
        }

        log::info!("Getting workflow with id '{}'", _id);

        Ok(None)
    }
}

/// Represents a workflow that has been created.
///
/// This enum wraps workflows in either dry run mode or runtime mode.
pub enum CreatedWorkflow {
    DryRun(DryRunWorkflow),
    Runtime(RuntimeWorkflow),
}

impl CreatedWorkflow {
    /// Returns the workflow ID.
    pub fn id(&self) -> &str {
        match self {
            CreatedWorkflow::DryRun(w) => w.id(),
            CreatedWorkflow::Runtime(w) => w.id(),
        }
    }

    /// Returns the workflow name.
    pub fn name(&self) -> &str {
        match self {
            CreatedWorkflow::DryRun(w) => w.name(),
            CreatedWorkflow::Runtime(w) => w.name(),
        }
    }

    /// Returns the workflow namespace.
    pub fn namespace(&self) -> &str {
        match self {
            CreatedWorkflow::DryRun(w) => w.namespace(),
            CreatedWorkflow::Runtime(w) => w.namespace(),
        }
    }

    /// Returns whether this is a dry run workflow.
    pub fn is_dry_run(&self) -> bool {
        matches!(self, CreatedWorkflow::DryRun(_))
    }
}

/// Trait for workflow-like objects.
///
/// This trait provides a common interface for different workflow representations.
pub trait WorkflowLike {
    /// Returns the workflow ID.
    fn id(&self) -> &str;

    /// Returns the workflow name.
    fn name(&self) -> &str;

    /// Returns the workflow namespace.
    fn namespace(&self) -> &str;
}

/// A workflow in dry run mode.
///
/// Dry run workflows are validated but not executed.
pub struct DryRunWorkflow {
    workflow: Workflow,
    namespace: String,
}

impl WorkflowLike for DryRunWorkflow {
    fn id(&self) -> &str {
        &self.workflow.id
    }

    fn name(&self) -> &str {
        &self.workflow.name
    }

    fn namespace(&self) -> &str {
        &self.namespace
    }
}

/// A workflow in runtime mode.
///
/// Runtime workflows are actually executed in the cluster.
pub struct RuntimeWorkflow {
    workflow: Workflow,
    namespace: String,
}

impl WorkflowLike for RuntimeWorkflow {
    fn id(&self) -> &str {
        &self.workflow.id
    }

    fn name(&self) -> &str {
        &self.workflow.name
    }

    fn namespace(&self) -> &str {
        &self.namespace
    }
}

#[cfg(test)]
mod tests {
    use super::super::MaestroClientBuilder;
    use super::*;
    use crate::steps::traits::{ResourceLimitedStep, WorkFlowStep};
    use crate::workflows::WorkflowBuilder;

    #[derive(Debug, Clone)]
    struct MockStep {
        id: String,
    }

    impl MockStep {
        fn new(id: impl Into<String>) -> Self {
            Self { id: id.into() }
        }
    }

    impl WorkFlowStep for MockStep {
        fn step_id(&self) -> &str {
            &self.id
        }

        fn as_any(&self) -> &dyn std::any::Any {
            self
        }
    }

    impl ResourceLimitedStep for MockStep {
        fn with_resource_limits(self, _limits: ResourceLimits) -> Self {
            self
        }

        fn resource_limits(&self) -> Option<&ResourceLimits> {
            None
        }
    }

    #[test]
    fn test_client_namespace() {
        let client = MaestroClientBuilder::new()
            .with_namespace("production")
            .build()
            .unwrap();

        assert_eq!(client.namespace(), "production");
    }

    #[test]
    fn test_client_dry_run() {
        let client = MaestroClientBuilder::new()
            .with_dry_run(true)
            .build()
            .unwrap();

        assert!(client.dry_run());
    }

    #[test]
    fn test_client_default_timeout() {
        let timeout = Duration::from_secs(60);
        let client = MaestroClientBuilder::new()
            .with_default_timeout(timeout)
            .build()
            .unwrap();

        assert_eq!(client.default_timeout(), Some(&timeout));
    }

    #[test]
    fn test_client_log_level() {
        let client = MaestroClientBuilder::new()
            .with_log_level("debug")
            .build()
            .unwrap();

        assert_eq!(client.log_level(), Some("debug"));
    }

    #[test]
    fn test_client_default_resource_limits() {
        let limits = ResourceLimits::new().with_cpu("500m").with_memory("512Mi");
        let client = MaestroClientBuilder::new()
            .with_default_resource_limits(limits)
            .build()
            .unwrap();

        assert!(client.default_resource_limits().is_some());
    }

    #[test]
    fn test_create_workflow_dry_run() {
        let client = MaestroClientBuilder::new()
            .with_dry_run(true)
            .with_namespace("test")
            .build()
            .unwrap();

        let step = MockStep::new("step-1");
        let workflow = WorkflowBuilder::new()
            .with_name("test-workflow")
            .with_namespace("default")
            .add_step(step)
            .build()
            .unwrap();

        let result = client.create_workflow(workflow);
        assert!(result.is_ok());

        let created = result.unwrap();
        assert!(created.is_dry_run());
        assert_eq!(created.name(), "test-workflow");
    }

    #[test]
    fn test_create_workflow_production() {
        let client = MaestroClientBuilder::new()
            .with_namespace("production")
            .build()
            .unwrap();

        let step = MockStep::new("step-1");
        let workflow = WorkflowBuilder::new()
            .with_name("test-workflow")
            .with_namespace("default")
            .add_step(step)
            .build()
            .unwrap();

        let result = client.create_workflow(workflow);
        assert!(result.is_ok());

        let created = result.unwrap();
        assert!(!created.is_dry_run());
        assert_eq!(created.name(), "test-workflow");
    }

    #[test]
    fn test_get_workflow_dry_run() {
        let client = MaestroClientBuilder::new()
            .with_dry_run(true)
            .build()
            .unwrap();

        let result = client.get_workflow("test-id");
        assert!(result.is_ok());
        assert!(result.unwrap().is_none());
    }

    #[test]
    fn test_get_workflow_production() {
        let client = MaestroClientBuilder::new().build().unwrap();

        let result = client.get_workflow("test-id");
        assert!(result.is_ok());
        assert!(result.unwrap().is_none());
    }

    // NOTE: list_workflows method does not exist on MaestroClient
    // These tests are commented out until the method is implemented
    // #[test]
    // fn test_list_workflows_dry_run() {
    //     let client = MaestroClientBuilder::new()
    //         .with_dry_run(true)
    //         .build()
    //         .unwrap();
    //
    //     let result = client.list_workflows();
    //     assert!(result.is_ok());
    //     assert!(result.unwrap().is_empty());
    // }

    // #[test]
    // fn test_list_workflows_production() {
    //     let client = MaestroClientBuilder::new().build().unwrap();
    //
    //     let result = client.list_workflows();
    //     assert!(result.is_ok());
    //     assert!(result.unwrap().is_empty());
    // }
}