|
5 | 5 | # Default values in this YAML file are specified by `null` instead of Lima's "builtin default" values,
|
6 | 6 | # so they can be overridden by the $LIMA_HOME/_config/default.yaml mechanism documented at the end of this file.
|
7 | 7 |
|
8 |
| -# A template should specify the minimum Lima version required to parse this template correctly. |
9 |
| -# It should not be set if the minimum version is less than 1.0.0 |
10 |
| -# 🟢 Builtin default: not set |
11 |
| -minimumLimaVersion: null |
12 |
| - |
13 | 8 | # VM type: "qemu", "vz" (on macOS 13 and later), or "default".
|
14 | 9 | # The vmType can be specified only on creating the instance.
|
15 | 10 | # The vmType of existing instances cannot be changed.
|
16 | 11 | # 🟢 Builtin default: "vz" (on macOS 13.5 and later), "qemu" (on others)
|
17 | 12 | vmType: null
|
18 | 13 |
|
19 |
| -vmOpts: |
20 |
| - qemu: |
21 |
| - # Minimum version of QEMU required to create an instance of this template. |
22 |
| - # Will be ignored if the vmType is not "qemu" |
23 |
| - # 🟢 Builtin default: not set |
24 |
| - minimumVersion: null |
25 |
| - |
26 |
| -# OS: "Linux". |
27 |
| -# 🟢 Builtin default: "Linux" |
28 |
| -os: null |
29 |
| - |
30 | 14 | # Arch: "default", "x86_64", "aarch64".
|
31 | 15 | # 🟢 Builtin default: "default" (corresponds to the host architecture)
|
32 | 16 | arch: null
|
@@ -135,6 +119,10 @@ mountType: null
|
135 | 119 | # 🟢 Builtin default: Disabled by default
|
136 | 120 | mountInotify: null
|
137 | 121 |
|
| 122 | +# ===================================================================== # |
| 123 | +# ADVANCED CONFIGURATION |
| 124 | +# ===================================================================== # |
| 125 | + |
138 | 126 | # Lima disks to attach to the instance. The disks will be accessible from inside the
|
139 | 127 | # instance, labeled by name. (e.g. if the disk is named "data", it will be labeled
|
140 | 128 | # "lima-data" inside the instance). The disk will be mounted inside the instance at
|
@@ -173,10 +161,6 @@ ssh:
|
173 | 161 | # 🟢 Builtin default: false
|
174 | 162 | forwardX11Trusted: null
|
175 | 163 |
|
176 |
| -# ===================================================================== # |
177 |
| -# ADVANCED CONFIGURATION |
178 |
| -# ===================================================================== # |
179 |
| - |
180 | 164 | caCerts:
|
181 | 165 | # If set to `true`, this will remove all the default trusted CA certificates that
|
182 | 166 | # are normally shipped with the OS.
|
@@ -285,6 +269,22 @@ containerd:
|
285 | 269 | # FURTHER ADVANCED CONFIGURATION
|
286 | 270 | # ===================================================================== #
|
287 | 271 |
|
| 272 | +# A template should specify the minimum Lima version required to parse this template correctly. |
| 273 | +# It should not be set if the minimum version is less than 1.0.0 |
| 274 | +# 🟢 Builtin default: not set |
| 275 | +minimumLimaVersion: null |
| 276 | + |
| 277 | +vmOpts: |
| 278 | + qemu: |
| 279 | + # Minimum version of QEMU required to create an instance of this template. |
| 280 | + # Will be ignored if the vmType is not "qemu" |
| 281 | + # 🟢 Builtin default: not set |
| 282 | + minimumVersion: null |
| 283 | + |
| 284 | +# OS: "Linux". |
| 285 | +# 🟢 Builtin default: "Linux" |
| 286 | +os: null |
| 287 | + |
288 | 288 | # Specify desired QEMU CPU type for each arch.
|
289 | 289 | # You can see what options are available for host emulation with: `qemu-system-$(arch) -cpu help`.
|
290 | 290 | # Setting of instructions is supported like this: "qemu64,+ssse3".
|
|
0 commit comments