syncable-cli 0.37.1

A Rust-based CLI that analyzes code repositories and generates Infrastructure as Code configurations
Documentation
1
2
3
4
5
6
7
8
9
10
//! Kubernetes schema validation and API version tracking.
//!
//! This module provides:
//! - Deprecated Kubernetes API detection
//! - Basic resource kind validation
//! - Kubernetes version compatibility checking

pub mod api_versions;

pub use api_versions::{DeprecatedApi, K8sVersion, get_replacement_api, is_api_deprecated};