From 3f78f9d0d9b2e87652f7863bcd789320d41e6a03 Mon Sep 17 00:00:00 2001 From: colben Date: Wed, 12 Mar 2025 18:05:39 +0800 Subject: [PATCH] update --- content/post/incus-install.md | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/content/post/incus-install.md b/content/post/incus-install.md index 88dff1b..a6584c9 100644 --- a/content/post/incus-install.md +++ b/content/post/incus-install.md @@ -276,11 +276,13 @@ incus3 | eth0: 192.168.1.3 | 10.10.10.3 | /dev/sdb | 10.10.10.3 incus3 - 启动一个系统级容器 alpine-lxc ```BASH # 单机环境 - incus launch local:alpine/3.21 alpine-lxc + incus launch local:alpine/3.21 alpine-lxc \ + -c limits.cpu=2 -c limits.memory=4GiB -d root,size=5GiB # 集群环境中的 incus2 节点 ```BASH incus launch local:alpine/3.21 alpine-lxc \ + -c limits.cpu=2 -c limits.memory=4GiB -d root,size=5GiB \ --network incusbr --storage pool1 --target incus2 ```