@@ -32,7 +32,7 @@ os: null
3232arch : null
3333
3434# OpenStack-compatible disk image.
35- # 🟢 Builtin default: null (must be specified)
35+ # 🟢 Builtin default: none (must be specified)
3636# 🔵 This file: Ubuntu images
3737images :
3838# Try to use release-yyyyMMdd image if available. Note that release-yyyyMMdd will be removed after several months.
@@ -74,7 +74,7 @@ disk: null
7474# Expose host directories to the guest, the mount point might be accessible from all UIDs in the guest
7575# "location" can use these template variables: {{.Home}}, {{.Dir}}, {{.Name}}, {{.UID}}, {{.User}}, and {{.Param.Key}}.
7676# "mountPoint" can use these template variables: {{.Home}}, {{.Name}}, {{.UID}}, {{.User}}, and {{.Param.Key}}
77- # 🟢 Builtin default: null (Mount nothing)
77+ # 🟢 Builtin default: [] (Mount nothing)
7878# 🔵 This file: Mount the home as read-only, /tmp/lima as writable
7979mounts :
8080- location : " ~"
@@ -123,8 +123,9 @@ mounts:
123123
124124# List of mount types not supported by the kernel of this distro.
125125# Also used to resolve the default mount type when not explicitly specified.
126- # 🟢 Builtin default: null
127- mountTypesUnsupported : null
126+ # 🟢 Builtin default: []
127+ mountTypesUnsupported :
128+ # - "9p"
128129
129130# Mount type for above mounts, such as "reverse-sshfs" (from sshocker), "9p" (QEMU’s virtio-9p-pci, aka virtfs),
130131# or "virtiofs" (experimental on Linux; needs `vmType: vz` on macOS).
@@ -139,7 +140,7 @@ mountInotify: null
139140# instance, labeled by name. (e.g. if the disk is named "data", it will be labeled
140141# "lima-data" inside the instance). The disk will be mounted inside the instance at
141142# `/mnt/lima-${VOLUME}`.
142- # 🟢 Builtin default: null
143+ # 🟢 Builtin default: []
143144additionalDisks :
144145# disks should either be a list of disk name strings, for example:
145146# - "data"
@@ -222,7 +223,7 @@ containerd:
222223# Provisioning scripts need to be idempotent because they might be called
223224# multiple times, e.g. when the host VM is being restarted.
224225# The scripts can use the following template variables: {{.Home}}, {{.UID}}, {{.User}}, and {{.Param.Key}}
225- # 🟢 Builtin default: null
226+ # 🟢 Builtin default: []
226227# provision:
227228# # `system` is executed with root privileges
228229# - mode: system
@@ -265,7 +266,7 @@ containerd:
265266# Probe scripts to check readiness.
266267# The scripts run in user mode. They must start with a '#!' line.
267268# The scripts can use the following template variables: {{.Home}}, {{.UID}}, {{.User}}, and {{.Param.Key}}
268- # 🟢 Builtin default: null
269+ # 🟢 Builtin default: []
269270# probes:
270271# # Only `readiness` probes are supported right now.
271272# - mode: readiness
@@ -352,7 +353,7 @@ video:
352353
353354# The instance can get routable IP addresses from the vmnet framework using
354355# https://github.com/lima-vm/socket_vmnet.
355- # 🟢 Builtin default: null
356+ # 🟢 Builtin default: []
356357networks :
357358# Lima can manage daemons for networks defined in $LIMA_HOME/_config/networks.yaml
358359# automatically. The socket_vmnet binary must be installed into
@@ -435,7 +436,7 @@ networks:
435436# The same template variables as for listing instances can be used, for example {{.Dir}}.
436437# You can view the complete list of variables using `limactl list --list-fields` command.
437438# It also includes {{.HostOS}} and {{.HostArch}} vars, for the runtime GOOS and GOARCH.
438- # 🟢 Builtin default: null
439+ # 🟢 Builtin default: ""
439440# message: |
440441# This will be shown to the user.
441442
@@ -444,7 +445,7 @@ networks:
444445# to /etc/environment.
445446# If you set any of "ftp_proxy", "http_proxy", "https_proxy", or "no_proxy", then
446447# Lima will automatically set an uppercase variant to the same value as well.
447- # 🟢 Builtin default: null
448+ # 🟢 Builtin default: {}
448449# env:
449450# KEY: value
450451
@@ -480,7 +481,7 @@ hostResolver:
480481 # Static names can be defined here as an alternative to adding them to the hosts /etc/hosts.
481482 # Values can be either other hostnames, or IP addresses. The host.lima.internal name is
482483 # predefined to specify the gateway address to the host.
483- # 🟢 Builtin default: null
484+ # 🟢 Builtin default: {}
484485 hosts :
485486 # guest.name: 127.1.1.1
486487 # host.name: host.lima.internal
@@ -492,7 +493,7 @@ hostResolver:
492493# that has an IPv4 address, to the list. In case this still doesn't work (e.g. VPN
493494# setups), the servers can be specified here explicitly. If nameservers are specified
494495# here, then the configuration from network preferences will be ignored.
495- # 🟢 Builtin default: null
496+ # 🟢 Builtin default: []
496497# dns:
497498# - 1.1.1.1
498499# - 1.0.0.1
0 commit comments