web-dev-qa-db-ja.com

juju bootstrap MAASでは機能しません

私はこのドキュメントに従って、MAASとJUJUを使用してopenstackを実装しています。

MAASおよびJujuを使用したUbuntuクラウドインフラストラクチャ

JUJUをセットアップするには、次のようにします。 Get Ju Getting Started

これを修正する方法についてのアイデアはありますか?

root@ubuntu:~/.juju# juju status -e maas -v
2013-07-28 17:31:47 ERROR juju supercommand.go:235 command failed: file 'provider-          state' not found not found
error: file 'provider-state' not found not found

root@ubuntu:~/.juju# juju bootstrap -e maas -v
2013-07-28 17:36:27 ERROR juju supercommand.go:235 command failed: cannot create     bootstrap state file: gomaasapi: got error back from server: 400 BAD REQUEST
error: cannot create bootstrap state file: gomaasapi: got error back from server: 400     BAD REQUEST

environment.yamlのmaasセクション

  maas:
type: maas
# Change this to where your MAAS server lives.  It must specify the base path.
maas-server: 'http://192.168.119.140/MAAS'
maas-oauth: '********hidden****8:P6srrdD57RckEfJeEa2r'
admin-secret: fa4fb05****hidden*****e6f2d3fd29cb1f
default-series: precise
authorized-keys-path: ~/.ssh/authorized_keys # or any file you want.

そして、このバグは修正されたようですが、JUJUの最新バージョンでこの問題に直面しています。

バグの説明

3
badri

12.04でMAASを実行している場合、juju-coreにいくつかの変更を加えました。以下は、MAASのバグレポートと修正プログラムです。

https://bugs.launchpad.net/maas/+bug/1204507

1
user179263