web-dev-qa-db-ja.com

チャームにある構成オプションのリストを取得するにはどうすればよいですか?

チャームをテストしようとしましたが、構成オプションがあり、それらに気づいていませんでした。 チャーム自体を参照する チャームにある構成オプションを確認するにはどうすればよいですか?

2
Jorge Castro

juju get次に、チャーム名は、それが持つ構成オプションと、現在の値(ある場合)を示します。

jorge@lowgirl:~/src/oneiric$ juju get statusnet
charm: local:oneiric/statusnet-1
service: statusnet
settings:
    email:
        description: The email address of the administrator (cannot be changed)
        type: string
        value: -Not set-
    nickname:
        description: The nickname for the administrator (cannot be changed)
        type: string
        value: -Not set-
    password:
        description: The password for the administrator
        type: string
        value: -Not set-
    title:
        description: The name of the site
        type: string
        value: Untitled

juju setは、次のように構成を渡します。

juju set statusnet email="[email protected]" nickname="jorge" password="whatever"

各コマンドには、対応するドキュメントがあります。

  • juju get --help
  • juju set --help
3
Jorge Castro