helm-schema 0.0.4

Generate an accurate JSON schema for any helm chart
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
//! Final JSON Schema output pipeline.
//!
//! Everything in this module runs after chart analysis and schema inference.
//! These transforms are output policy only; they must not feed information
//! back into template interpretation.

mod descriptions;
mod format;
mod global_mirror;
mod options;
mod overrides;
mod transforms;

pub use format::write_schema_json;
pub use options::{JsonOutputFormat, OutputPipelineOptions, PolicyInputOptions, ReferenceMode};
pub use overrides::{PolicyInputs, load_policy_inputs};
pub use transforms::apply_schema_output_pipeline;