Juju 魅力应用程序未被删除

Juju charm application is not getting removed

我的机器上有一个名为 my-rts 的超级按钮在启动时失败了。现在我尝试删除应用程序、单元和机器,但它并没有被删除。

我尝试使用以下命令删除所有 3 个:

$ juju remove-machine 3
$ juju remove-unit my-rts/0
$ juju remove-application my-rts

然后在 juju status,我看到它们还在那里。

$ juju status
Model    Controller  Cloud/Region         Version
default  test        localhost/localhost  2.0.2

App     Version  Status  Scale  Charm   Store       Rev  OS      Notes
my-rts           error       1  my-rts  jujucharms    0  ubuntu  

Unit       Workload  Agent  Machine  Public address  Ports  Message
my-rts/0*  error     idle   3        10.206.116.199         hook failed: "start"

Machine  State    DNS             Inst id        Series  AZ
3        stopped  10.206.116.199  juju-f1075c-3  trusty  

事实证明,对于这种情况,我缺少一个非常常见的解决方案。也就是强行去做。

juju remove-machine MachineID --force 有帮助。

可以在@https://github.com/juju/juju/issues/5293

中找到更多信息