You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
When MicroCloud bootstraps a new LXD cluster and you invoke any lxc * command on any of the cluster members for the first time you get the following message:
If this is your first time running LXD on this machine, you should also run: lxd init
This might be misleading as MicroCloud has already setup storage, networking and the cluster between the nodes.
When querying the /1.0 endpoint the storage_version value doesn't show any storage pool even though MicroCloud has already active storage pools.
It's because when you create a storage pool on a single node LXD, the storagePoolCreateGlobal func is calling dbStoragePoolCreateAndUpdateCache down the line which runs storagePoolDriversCacheUpdate and updates the global var storagePoolUsedDriversCacheVal.
But the same isn't happening when creating a storage pool within a LXD cluster using storagePoolsPostCluster. This causes the cache not being updated.
The text was updated successfully, but these errors were encountered:
When MicroCloud bootstraps a new LXD cluster and you invoke any
lxc *
command on any of the cluster members for the first time you get the following message:If this is your first time running LXD on this machine, you should also run: lxd init
This might be misleading as MicroCloud has already setup storage, networking and the cluster between the nodes.
When querying the
/1.0
endpoint thestorage_version
value doesn't show any storage pool even though MicroCloud has already active storage pools.It's because when you create a storage pool on a single node LXD, the
storagePoolCreateGlobal
func is callingdbStoragePoolCreateAndUpdateCache
down the line which runsstoragePoolDriversCacheUpdate
and updates the global varstoragePoolUsedDriversCacheVal
.But the same isn't happening when creating a storage pool within a LXD cluster using
storagePoolsPostCluster
. This causes the cache not being updated.The text was updated successfully, but these errors were encountered: