Answers:
是的,应该有可能。从控制器内部,您可以简单地在同一“云”上创建另一个模型。
我假设您已经使用以下方法进行引导:
$ juju bootstrap mymaas c-1 # mymaas is the name of the MAAS cloud,
# c-1 is the name of the controller
现在,您已经建立了两个模型。
$ juju models
Controller: c-1
Model Cloud/Region # ...
controller mymaas # ...
default mymaas # ...
您应该能够立即将模型添加到该云:
$ juju add-model model2
model2
应该在同一硬件上共存。
$ juju models
Controller: c-1
Model Cloud/Region # ...
controller mymaas # ...
default mymaas # ...
model2 mymaas # ...