32 lines
673 B
YAML
32 lines
673 B
YAML
# This file contains the complete preseed configuration for Incus.
|
|
config:
|
|
# This is for global daemon configuration
|
|
core.https_address: :8443 # We will set this here instead of a separate command
|
|
|
|
storage_pools:
|
|
- name: default
|
|
driver: zfs
|
|
config:
|
|
source: /var/lib/incus/disks/default.img
|
|
size: 20GiB
|
|
zfs.pool_name: incus
|
|
|
|
networks:
|
|
- name: incusbr0
|
|
type: bridge
|
|
config:
|
|
ipv4.address: auto
|
|
ipv6.address: auto
|
|
|
|
profiles:
|
|
- name: default
|
|
devices:
|
|
root:
|
|
path: /
|
|
pool: default
|
|
type: disk
|
|
eth0:
|
|
name: eth0
|
|
nictype: bridged
|
|
parent: incusbr0
|
|
type: nic |