kubernix 0.3.1

Kubernetes development cluster bootstrapping with Nix packages
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
//! Configuration related structures
use crate::{podman::Podman, system::System};
use anyhow::{Context, Result};
use clap::{Parser, Subcommand as ClapSubcommand, ValueEnum, builder::styling};
use ipnetwork::Ipv4Network;
use log::LevelFilter;
use serde::{Deserialize, Serialize};
use std::{
    fmt,
    fs::{self, canonicalize, create_dir_all, read_to_string},
    path::{Path, PathBuf},
};

/// Output format for log messages
#[derive(Clone, Copy, Debug, Default, Deserialize, PartialEq, Eq, Serialize, ValueEnum)]
#[serde(rename_all = "lowercase")]
pub enum LogFormat {
    /// Human-readable colored text (default)
    #[default]
    Text,
    /// Machine-readable JSON, one object per line
    Json,
}

impl fmt::Display for LogFormat {
    fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result {
        match self {
            LogFormat::Text => write!(f, "text"),
            LogFormat::Json => write!(f, "json"),
        }
    }
}

#[derive(Clone, Parser, Deserialize, Serialize)]
#[serde(rename_all = "kebab-case")]
#[command(
    after_help = "More info at: https://github.com/saschagrunert/kubernix",
    author = "Sascha Grunert <mail@saschagrunert.de>",
    version,
    styles = styling::Styles::styled()
        .header(styling::AnsiColor::Green.on_default().bold())
        .usage(styling::AnsiColor::Green.on_default().bold())
        .literal(styling::AnsiColor::Cyan.on_default().bold())
        .placeholder(styling::AnsiColor::Cyan.on_default())
)]
/// The global configuration
pub struct Config {
    #[command(subcommand)]
    /// All available subcommands
    subcommand: Option<SubCommand>,

    #[arg(
        default_value = "kubernix-run",
        env = "KUBERNIX_ROOT",
        global = true,
        long = "root",
        short = 'r',
        value_name = "PATH"
    )]
    /// Path where all the runtime data is stored
    root: PathBuf,

    #[arg(
        default_value = "info",
        env = "KUBERNIX_LOG_LEVEL",
        long = "log-level",
        short = 'l',
        value_name = "LEVEL"
    )]
    /// The logging level of the application
    log_level: LevelFilter,

    #[arg(
        default_value = "text",
        env = "KUBERNIX_LOG_FORMAT",
        long = "log-format",
        short = 'f',
        value_name = "FORMAT"
    )]
    /// The output format for log messages
    log_format: LogFormat,

    #[arg(
        default_value = "10.10.0.0/16",
        env = "KUBERNIX_CIDR",
        long = "cidr",
        short = 'c',
        value_name = "CIDR"
    )]
    /// The CIDR used for the cluster
    cidr: Ipv4Network,

    #[arg(
        env = "KUBERNIX_OVERLAY",
        long = "overlay",
        short = 'o',
        value_name = "PATH"
    )]
    /// The Nix package overlay to be used
    overlay: Option<PathBuf>,

    #[arg(
        env = "KUBERNIX_PACKAGES",
        long = "packages",
        num_args = 1..,
        short = 'p',
        value_name = "PACKAGE",
    )]
    /// Additional dependencies to be added to the environment
    packages: Vec<String>,

    #[arg(
        env = "KUBERNIX_SHELL",
        long = "shell",
        short = 's',
        value_name = "SHELL"
    )]
    /// The shell executable to be used, defaults to $SHELL, fallback is `sh`
    shell: Option<String>,

    #[arg(
        default_value = "1",
        env = "KUBERNIX_NODES",
        long = "nodes",
        short = 'n',
        value_name = "NODES"
    )]
    /// The number of nodes to be registered
    nodes: u8,

    #[arg(
        env = "KUBERNIX_CONTAINER_RUNTIME",
        long = "container-runtime",
        default_value = Podman::EXECUTABLE,
        requires = "nodes",
        short = 'u',
        value_name = "RUNTIME",
    )]
    /// The container runtime to be used for the nodes, irrelevant if `nodes` equals to `1`
    container_runtime: String,

    #[arg(
        conflicts_with = "shell",
        env = "KUBERNIX_NO_SHELL",
        long = "no-shell",
        short = 'e'
    )]
    /// Do not spawn an interactive shell after bootstrap
    no_shell: bool,

    #[arg(
        env = "KUBERNIX_DOCKERFILE",
        long = "dockerfile",
        short = 'd',
        value_name = "PATH"
    )]
    /// Custom Dockerfile path for multi-node container image builds
    dockerfile: Option<PathBuf>,

    #[arg(
        default_value = "coredns",
        env = "KUBERNIX_ADDONS",
        long = "addons",
        short = 'a',
        num_args = 0..,
        value_name = "ADDON",
    )]
    /// Cluster addons to deploy (available: coredns)
    addons: Vec<String>,
}

impl Config {
    /// The active subcommand, if any (e.g. `shell`).
    pub fn subcommand(&self) -> &Option<SubCommand> {
        &self.subcommand
    }

    /// Directory where all runtime data is stored.
    pub fn root(&self) -> &Path {
        &self.root
    }

    /// Configured log verbosity level.
    pub fn log_level(&self) -> LevelFilter {
        self.log_level
    }

    /// Output format for log messages (text or JSON).
    pub fn log_format(&self) -> LogFormat {
        self.log_format
    }

    /// Parent CIDR from which cluster, service, and pod subnets are carved.
    pub fn cidr(&self) -> Ipv4Network {
        self.cidr
    }

    /// Custom Nix package overlay path, if provided via `--overlay`.
    pub fn overlay(&self) -> Option<&Path> {
        self.overlay.as_deref()
    }

    /// Additional Nix packages to include in the runtime environment.
    pub fn packages(&self) -> &[String] {
        &self.packages
    }

    /// Interactive shell executable (defaults to `$SHELL`, fallback `sh`).
    pub fn shell(&self) -> Option<&str> {
        self.shell.as_deref()
    }

    /// Number of cluster nodes to register.
    pub fn nodes(&self) -> u8 {
        self.nodes
    }

    /// Container runtime executable used for multi-node setups.
    pub fn container_runtime(&self) -> &str {
        &self.container_runtime
    }

    /// Whether to skip spawning an interactive shell after bootstrap.
    pub fn no_shell(&self) -> bool {
        self.no_shell
    }

    /// Custom Dockerfile path for multi-node container image builds.
    pub fn dockerfile(&self) -> Option<&Path> {
        self.dockerfile.as_deref()
    }

    /// Cluster addons to deploy after bootstrap (e.g. `coredns`).
    pub fn addons(&self) -> &[String] {
        &self.addons
    }
}

/// Possible subcommands
#[derive(Clone, ClapSubcommand, Deserialize, Serialize)]
pub enum SubCommand {
    /// Spawn an additional shell session
    #[command(name = "shell")]
    Shell,
}

impl Default for Config {
    fn default() -> Self {
        let mut config = Self::parse();
        if config.shell.is_none() {
            config.shell = System::shell().ok();
        }
        config
    }
}

impl Config {
    const FILENAME: &'static str = "kubernix.toml";

    /// Make the configs root path absolute
    pub fn canonicalize_root(&mut self) -> Result<()> {
        self.create_root_dir()?;
        self.root = canonicalize(self.root()).with_context(|| {
            format!(
                "Unable to canonicalize config root directory '{}'",
                self.root().display()
            )
        })?;
        Ok(())
    }

    /// Write the current configuration to the internal set root path
    pub fn to_file(&self) -> Result<()> {
        self.create_root_dir()?;
        fs::write(self.root().join(Self::FILENAME), toml::to_string(&self)?)
            .context("Unable to write configuration to file")?;
        Ok(())
    }

    /// Read the configuration from the internal set root path
    /// If not existing, write the current configuration to the path.
    pub fn try_load_file(&mut self) -> Result<()> {
        let file = self.root().join(Self::FILENAME);
        if file.exists() {
            *self = toml::from_str(&read_to_string(&file).with_context(|| {
                format!(
                    "Unable to read expected configuration file '{}'",
                    file.display(),
                )
            })?)
            .with_context(|| format!("Unable to load config file '{}'", file.display()))?;
        } else {
            self.to_file()?;
        }
        Ok(())
    }

    /// Return the set shell as result type
    pub fn shell_ok(&self) -> Result<String> {
        let shell = self.shell.as_ref().context("No shell set")?;
        Ok(shell.into())
    }

    /// Returns true if multi node support is enabled
    pub fn multi_node(&self) -> bool {
        self.nodes() > 1
    }

    fn create_root_dir(&self) -> Result<()> {
        create_dir_all(self.root()).with_context(|| {
            format!(
                "Unable to create root directory '{}'",
                self.root().display()
            )
        })
    }
}

#[cfg(test)]
pub mod tests {
    use super::*;
    use std::path::Path;
    use tempfile::tempdir;

    pub fn test_config() -> Result<Config> {
        let mut c = Config::parse_from(&[] as &[&str]);
        if c.shell.is_none() {
            c.shell = System::shell().ok();
        }
        c.root = tempdir()?.keep();
        c.canonicalize_root()?;
        Ok(c)
    }

    pub fn test_config_wrong_root() -> Result<Config> {
        let mut c = test_config()?;
        c.root = Path::new("/").join("proc");
        Ok(c)
    }

    pub fn test_config_wrong_cidr() -> Result<Config> {
        let mut c = test_config()?;
        c.cidr = "10.0.0.1/31".parse()?;
        Ok(c)
    }

    #[test]
    fn canonicalize_root_success() -> Result<()> {
        let mut c = Config::default();
        c.root = tempdir()?.keep();
        c.canonicalize_root()
    }

    #[test]
    fn canonicalize_root_failure() {
        let mut c = Config::default();
        c.root = Path::new("/").join("proc").join("invalid");
        assert!(c.canonicalize_root().is_err())
    }

    #[test]
    fn to_file_success() -> Result<()> {
        let mut c = Config::default();
        c.root = tempdir()?.keep();
        c.to_file()
    }

    #[test]
    fn to_file_failure() {
        let mut c = Config::default();
        c.root = Path::new("/").join("proc").join("invalid");
        assert!(c.to_file().is_err())
    }

    #[test]
    fn try_load_file_success() -> Result<()> {
        let mut c = Config::default();
        c.root = tempdir()?.keep();
        fs::write(
            c.root.join(Config::FILENAME),
            r#"
addons = ["coredns"]
cidr = "1.1.1.1/16"
container-runtime = "podman"
log-format = "text"
log-level = "DEBUG"
no-shell = false
nodes = 1
packages = []
root = "root"
            "#,
        )?;
        c.try_load_file()?;
        assert_eq!(c.root(), Path::new("root"));
        assert_eq!(c.log_level(), LevelFilter::Debug);
        assert_eq!(c.log_format(), LogFormat::Text);
        assert_eq!(&c.cidr().to_string(), "1.1.1.1/16");
        assert!(c.dockerfile().is_none());
        Ok(())
    }

    #[test]
    fn try_load_file_with_dockerfile() -> Result<()> {
        let mut c = Config::default();
        c.root = tempdir()?.keep();
        fs::write(
            c.root.join(Config::FILENAME),
            r#"
addons = ["coredns"]
cidr = "1.1.1.1/16"
container-runtime = "podman"
dockerfile = "/tmp/MyDockerfile"
log-format = "json"
log-level = "DEBUG"
no-shell = false
nodes = 1
packages = []
root = "root"
            "#,
        )?;
        c.try_load_file()?;
        assert_eq!(c.log_format(), LogFormat::Json);
        assert_eq!(c.dockerfile(), Some(Path::new("/tmp/MyDockerfile")));
        Ok(())
    }

    #[test]
    fn try_load_file_failure() -> Result<()> {
        let mut c = Config::default();
        c.root = tempdir()?.keep();
        fs::write(c.root.join(Config::FILENAME), "invalid")?;
        assert!(c.try_load_file().is_err());
        Ok(())
    }
}