We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 2154ceb commit 74233a2Copy full SHA for 74233a2
1 file changed
src/aleph/vm/controllers/firecracker/instance.py
@@ -151,6 +151,13 @@ def _encode_user_data(self) -> bytes:
151
"ssh_authorized_keys": ssh_authorized_keys,
152
# Avoid the resize error because we already do it on the VM disk creation stage
153
"resize_rootfs": False,
154
+ "package_update": True,
155
+ "packages": [
156
+ "qemu-guest-agent"
157
+ ],
158
+ "runcmd": [
159
+ "systemctl start qemu-guest-agent.service"
160
+ ]
161
}
162
163
cloud_config_header = "#cloud-config\n"
0 commit comments