statehub_api/v0/helm.rs
1//
2// Copyright (c) 2022 RepliXio Ltd. All rights reserved.
3// Use is subject to license terms.
4//
5
6use super::*;
7
8#[derive(Clone, Debug, Serialize, Deserialize)]
9pub struct Helm {
10 pub repo: String,
11 pub chart: String,
12 pub version: String,
13 #[serde(default)]
14 pub parameters: HashMap<String, String>,
15}