Files
volt/tests/hybrid/test-manifests/basic-container.toml
Karl Clinger 0ebe75b2ca Volt CLI: source-available under AGPSL v5.0
Complete infrastructure platform CLI:
- Container runtime (systemd-nspawn)
- VoltVisor VMs (Neutron Stardust / QEMU)
- Stellarium CAS (content-addressed storage)
- ORAS Registry
- GitOps integration
- Landlock LSM security
- Compose orchestration
- Mesh networking

Copyright (c) Armored Gates LLC. All rights reserved.
Licensed under AGPSL v5.0
2026-03-21 02:08:15 -05:00

24 lines
471 B
TOML

# basic-container.toml — Minimal container workload manifest for Volt
#
# This creates a standard Voltainer container (systemd-nspawn, shared host kernel).
# No custom kernel, no hybrid-native features.
[workload]
name = "test-container-basic"
type = "container"
image = "ubuntu:24.04"
[resources]
memory = "512M"
cpu_weight = 100
pids_max = 2048
[network]
mode = "private"
bridge = "voltbr0"
[security]
seccomp = "default"
landlock = "server"
private_users = true