juju 没有回应

juju 没有回应

由于没有正确清理 juju 下的资源,我造成了一些混乱,因此之后除了“juju 控制器”之外的任何其他命令都会卡住并且没有响应。

如何从报告的列表中删除那些不存在的控制器?

$ juju 控制器
此命令中使用 --refresh 选项可查看最新信息。

控制器模型 用户访问 云/区域模型 节点 HA 版本
alter-ego 默认管理员超级用户 localhost/localhost 1 1 无 2.9-beta1    
osm-k8s osm 管理员超级用户 microk8s/localhost 2 - - 2.9-beta1  
osm-lxd* 默认管理员超级用户 localhost/localhost 2 1 无 2.8.0

答案1

juju destroy-controller --help

这是一个好的开始。它为您提供了其他选项,例如:

--destroy-all-models 

--destroy-storage  or --release-storage

示例:# 销毁控制器和所有托管模型。如果任何模型中仍有持久存储,则# 这将提示您选择销毁或释放存储。juju destroy-controller --destroy-all-models mycontroller

# Destroy the controller and all hosted models, destroying
# any remaining persistent storage.
juju destroy-controller --destroy-all-models --destroy-storage

# Destroy the controller and all hosted models, releasing
# any remaining persistent storage from Juju's control.
juju destroy-controller --destroy-all-models --release-storage

相关内容