Du kan inte välja fler än 25 ämnen
Ämnen måste starta med en bokstav eller siffra, kan innehålla bindestreck ('-') och vara max 35 tecken långa.
|
- ---
- lxd_config:
-
- # Daemon settings
- config:
- #core.https_address: 192.168.1.1:9999
- #core.trust_password: sekret
- images.auto_update_interval: 6
-
- # Storage pools
- storage_pools:
- - name: data
- driver: zfs
- config:
- source: my-zfs-pool/my-zfs-dataset
-
- # Network devices
- networks:
- - name: lxd-my-bridge
- type: bridge
- config:
- ipv4.address: auto
- ipv6.address: none
-
- # Profiles
- profiles:
- - name: default
- devices:
- root:
- path: /
- pool: data
- type: disk
- - name: test-profile
- description: "Test profile"
- config:
- limits.memory: 2GB
- devices:
- test0:
- name: test0
- nictype: bridged
- parent: lxd-my-bridge
- type: nic
|