1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
//
// Copyright (c) 2021 RepliXio Ltd. All rights reserved.
// Use is subject to license terms.
//

use super::*;

#[derive(Clone, Debug, Serialize, Deserialize)]
pub struct Helm {
    pub repo: String,
    pub chart: String,
    pub version: String,
    pub parameters: HashMap<String, String>,
}