-
-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathparams.rs
More file actions
24 lines (18 loc) · 640 Bytes
/
params.rs
File metadata and controls
24 lines (18 loc) · 640 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
use serde_yaml::Mapping;
use stackable_operator::kvp::Labels;
use crate::platform::operator::ChartSourceType;
pub struct DemoInstallParameters {
/// Name of the stack, which is always present, as a demo builds on top of a stack
pub stack_name: String,
/// Name of the demo, which is always present
pub demo_name: String,
pub operator_namespace: String,
pub demo_namespace: String,
pub stack_parameters: Vec<String>,
pub parameters: Vec<String>,
pub skip_release: bool,
pub stack_labels: Labels,
pub labels: Labels,
pub chart_source: ChartSourceType,
pub operator_values: Mapping,
}