@AT
@AT
To avoid the possible issues we can introduce additional command to create (or even modify) symlink file. for example `lxc file symlink create ` with option `--force` to override exiting...
I forgot to mention that project `test` is project created with default settings. I've updated description. Project `test` config is below: ``` name: test description: "" config: features.images: "true" features.profiles:...
There is one more observation. Resource `lxc_cached_image` does not use attribute `project` from the provider config correctly. See 2 examples below: ### 1. `project` attribute set to `test` in provider's...
Below is a workaround: Modifying `image` attribute in `lxd_instance` resource from `image = lxd_cached_image.alpine.fingerprint` to `image = format("${lxd_cached_image.alpine.source_remote}:${lxd_cached_image.alpine.fingerprint}")` makes the configuration work. But, it's still not clear why image remote...
> > The first approach where `project` is set within a `provider "lxd"` block does not work because there is no such attribute. However, this seems like a validation issue...
I was tried to lunch an `incus-agent` in the `OpenWRT` VM and it fails: ``` incus-agent --verbose --debug INFO [2024-12-31T03:07:19Z] Starting INFO [2024-12-31T03:07:19Z] Loading vsock module INFO [2024-12-31T03:07:19Z] Stopped Error:...
Thank you Stephane for the confirmation! I looked through the code and see how does it check already loaded modules. The biggest problem now is that the none of `vhost_vsock`...
Looking through the `qemu-agent` I see it can use three communication methods between `guest` and `host`. The default method is a `serial`, which does not require loading any additional modules....
Understood.
One more question, Stephane. Is it possible to use custom local rootfs tar file or directory structure to build image using the `distrobuilder`? I tried to see the available options,...