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