web-dev-qa-db-ja.com

プライベートOpenStackクラウドでjuju 1.11をbootstrapにするにはどうすればよいですか?

稼働中のプライベートOpenStackインストールがあり、jujuを使用しようとしています。次のように:

dave@dave-D945GTP:~$ juju version
1.11.2-raring-AMD64

dave@dave-D945GTP:~$ juju sync-tools
listing the source bucket
found 6 tools
found 6 recent tools (version 1.10.0)
listing target bucket
found 0 tools in target; 6 tools to be copied
copying tools/juju-1.10.0-precise-AMD64.tgz, download 2205kB, uploading
copying tools/juju-1.10.0-precise-i386.tgz, download 2306kB, uploading
copying tools/juju-1.10.0-quantal-AMD64.tgz, download 2209kB, uploading
copying tools/juju-1.10.0-quantal-i386.tgz, download 2311kB, uploading
copying tools/juju-1.10.0-raring-AMD64.tgz, download 2208kB, uploading
copying tools/juju-1.10.0-raring-i386.tgz, download 2312kB, uploading
copied 6 tools

これまでのところ、すべてが良いようです。ただし、ブートストラップに失敗します。

dave@dave-D945GTP:~$ juju -v bootstrap
2013-07-11 09:34:17 INFO juju provider.go:117 environs/openstack: opening environment "openstack"
2013-07-11 09:34:17 INFO juju provider.go:467 environs/openstack: bootstrapping environment "openstack"
2013-07-11 09:34:27 INFO juju tools.go:25 environs: reading tools with major version 1
2013-07-11 09:34:27 INFO juju tools.go:52 environs: filtering tools by series: precise
2013-07-11 09:34:27 INFO juju tools.go:75 environs: picked newest version: 1.10.0
2013-07-11 09:34:28 ERROR juju supercommand.go:234 command failed: cannot start bootstrap instance: no "precise" images in RegionOne with arches [AMD64 i386]
error: cannot start bootstrap instance: no "precise" images in RegionOne with arches [AMD64 i386]

Swift 'juju-cece0b9817a68cba4780784bf0663e45'という名前のコンテナ(juju sync-toolsで取得した6つのファイルを含む)およびbootstrap-verifyファイルが正常に作成されました。

私の.juju/environments.yamlは次のとおりです。

default: openstack

environments:
  ## https://juju.ubuntu.com/get-started/openstack/
  openstack:
    type: openstack
    # Specifies whether the use of a floating IP address is required to give the nodes
    # a public IP address. Some installations assign public IP addresses by default without
    # requiring a floating IP address.
    use-floating-ip: true
    admin-secret: sekret
    default-series: precise
    # Globally unique Swift bucket name
    control-bucket: juju-cece0b9817a68cba4780784bf0663e45
    # Usually set via the env variable OS_AUTH_URL, but can be specified here
    auth-url: http://10.103.8.1:5000/v2.0/
    # override if your workstation is running a different series to which you are deploying
    # The following are used for userpass authentication (the default)
    auth-mode: userpass
    # Usually set via the env variable OS_USERNAME, but can be specified here
    username: admin
    # Usually set via the env variable OS_PASSWORD, but can be specified here
    password: sekret
    # Usually set via the env variable OS_TENANT_NAME, but can be specified here
    tenant-name: admin
    # Usually set via the env variable OS_REGION_NAME, but can be specified here
    region: RegionOne

少し読んだ後、私は明らかに「正確な」画像をアップロードし、juju image-metadataを実行する必要があると判断しました。次のようにメタデータを作成しました...

dave@dave-D945GTP:~/.juju$ juju image-metadata -a AMD64 -e http://10.103.8.1:5000/v2.0 -i d7e2ea12-cb50-4687-b5e1-d90f0656164a -n openstack -r RegionOne -s precise

...そして結果のファイルをjuju-cece0b9817a68cba4780784bf0663e45コンテナの「streams/v1」に移動しました。

juju bootstrap -vはまったく同じ結果を生成しました。

また、(おそらく無関係な)バグレポートで見つかったいくつかのコンテンツに基づいて、openstack-index.jsonとopenstack-imagemetadata.jsonをそれぞれindex.jsonとimagemetadata.jsonにコピーしてみました。

再び、juju bootstrap -vはまったく同じ結果を生成しました。

助言がありますか?

3
Dave

画像データファイルをアップロードするjuju-distと呼ばれる2番目のバケットを作成する必要があります。それから加えて

public-bucket-url: <URL TO JUJU-DIST BUCKET>

あなたにenvironments.yamlファイル。これにより、「正確な画像が見つかりませんでした」エラーが解決されます。

2
Marco Ceppi