26 lines
770 B
YAML
26 lines
770 B
YAML
# lab-single.yaml - Single IncusOS node for basic testing
|
|
#
|
|
# Deploys 1 standalone Incus node with defaults. Useful for:
|
|
# - Testing single-node workloads (containers, VMs)
|
|
# - Verifying seed configs and install flow
|
|
# - Quick experiments without a full cluster
|
|
#
|
|
# Usage:
|
|
# incusos-proxmox --dry-run examples/lab-single.yaml # Preview
|
|
# incusos-proxmox --yes examples/lab-single.yaml # Deploy
|
|
# incusos-proxmox --status examples/lab-single.yaml # Check status
|
|
# incusos-proxmox --cleanup examples/lab-single.yaml # Tear down
|
|
#
|
|
# Connection settings from proxmox.yaml (see examples/proxmox.yaml.example).
|
|
|
|
defaults:
|
|
cores: 4
|
|
memory: 4096
|
|
disk: 50
|
|
start_vmid: 800
|
|
|
|
vms:
|
|
- name: incus-single
|
|
app: incus
|
|
apply_defaults: true
|