使用召集设置旋转Kubernetes时出现的问题

时间:2018-08-23 13:52:23

标签: python kubernetes vagrant

无法完成Conjure-up设置以启动AWS中的Kubernetes集群,以下是错误的详细信息:

enter image description here

我的预想版本是2.6.0

journalctl | grep conjure-up的输出:

No journal files were opened due to insufficient permissions

$ cat $HOME/.cache/conjure-up/conjure-up.log的输出:

2018-08-22 22:12:03,502 [ERROR] conjure-up/kubernetes-core - provider.py:379 - LXD Parse error: stderr:

error: unknown command: query

2018-08-22 22:12:05,504 [DEBUG] conjure-up/kubernetes-core - provider.py:355 - LXD environment set: binary /usr/bin/lxc lxd_dir /var/lib/lxd

2018-08-22 22:12:05,526 [DEBUG] conjure-up/kubernetes-core - provider.py:372 - LXD query cmd: /usr/bin/lxc query --wait /1.0

2018-08-22 22:12:05,548 [ERROR] conjure-up/kubernetes-core - provider.py:378 - LXD Parse error: stdout: Usage: lxc <command> [options]

1 个答案:

答案 0 :(得分:1)

如果您仍然遇到此问题,请查看here

基本上,您必须卸载当前的lxd并通过snap进行安装。

  1. sudo apt purge lxc lxd lxd-client
  2. sudo snap install lxd
  3. /snap/bin/lxd init
  4. /snap/bin/lxd.migrate
  5. sudo usermod -a -G lxd $USER
  6. newgrp lxd
  7. 重新登录

更新:

如果发生这种情况,我相信删除该.cache文件夹可能会有所帮助: rm -rf ~/.cache/conjure-up

我有一个不同的错误-它抱怨无法获取网桥接口的ip地址-但是上面的帮助对我来说更多。

此外,我后来不得不发出以下命令来“禁用”桥接接口上的ipv6 nat,尽管对lxd init中的问题回答“无”: lxc network set lxdbr0 ipv6.nat false