-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathmod.rs
More file actions
29 lines (27 loc) · 1.13 KB
/
mod.rs
File metadata and controls
29 lines (27 loc) · 1.13 KB
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
//! Validation and verification steps
//!
//! This module contains steps that perform testing, validation, and verification
//! operations to ensure that deployments are working correctly and meet requirements.
//! These steps validate various aspects of the deployed infrastructure and services.
//!
//! ## Available Steps
//!
//! - `cloud_init` - Cloud-init completion validation
//! - `docker` - Docker installation and functionality validation
//! - `docker_compose` - Docker Compose installation and functionality validation
//!
//! ## Key Features
//!
//! - Comprehensive deployment validation and testing
//! - Service health and functionality verification
//! - Integration with remote action validation system
//! - Detailed error reporting for validation failures
//!
//! These steps ensure that the complete deployment workflow has resulted in
//! a functional environment ready for application deployment and operation.
pub mod cloud_init;
pub mod docker;
pub mod docker_compose;
pub use cloud_init::ValidateCloudInitCompletionStep;
pub use docker::ValidateDockerInstallationStep;
pub use docker_compose::ValidateDockerComposeInstallationStep;