ktmpl 0.9.1

Parameterized templates for Kubernetes manifests.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
use std::collections::HashSet;

/// A Kubernetes secret.
///
/// If a set of these values is passed to a `Template`, all of the secret's data values will be
/// Base64 encoded after interpolation of parameters.
#[derive(Debug, Eq, Hash, PartialEq)]
pub struct Secret {
    /// The name of the secret.
    pub name: String,
    /// The namespace of the secret.
    pub namespace: String,
}

/// A set of Kubernetes secrets.
pub type Secrets = HashSet<Secret>;