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
//! YAML, Helm, and Kustomize parsing for Kubernetes manifests.

pub mod helm;
pub mod kustomize;
pub mod yaml;

pub use yaml::{parse_yaml, parse_yaml_dir, parse_yaml_file};