HOS 2.0 サードパーティ製 Cinder ストレージソリューションの設定 – SOLIDFIRE
2015-12-09
Machine-translated — the English original is authoritative.
HOS 2.0 で SolidFire ストレージアレイを Cinder バックエンドとして設定する
ストレージバックエンドの詳細を設定するには、cinder.conf.j2 を修正する必要があります。
Cinder バックエンドを設定するには、以下の手順を実行します。
- ライフサイクルマネージャー [デプロイヤーノード] にログインします。
- ~/helion/my_cloud/config/cinder/cinder.conf.j2 ファイルに以下の変更を行います。
a. enabled_backends セクションに SolidFire バックエンドを追加します。
# Configure the enabled backends
enabled_backends=SolidFire_iSCSI
b. 新しい SolidFire iscsi クラスターセクションを作成し、クラスター情報に基づいて値を入力します。
以下に例を示します。
# SOLIDFIRE CONFIG
#
[SolidFire_iSCSI]
volume_driver = cinder.volume.drivers.solidfire.SolidFireDriver
san_ip = 10.11.12.13
san_login = san-admin
san_password = secret-password
sf_emulate_512 = True
volume_backend_name = solidfire
#
# End of section for solidfire
設定をローカルの git リポジトリにコミットします。
cd ~/helion/hos/ansible
git add -A
git commit -m "Added SolidFire to Cinder Backend Storage"
- 設定プロセッサーを実行します。
cd ~/helion/hos/ansible
ansible-playbook -i hosts/localhost config-processor-run.yml
- 以下のコマンドを実行して、デプロイメントディレクトリを作成します。
cd ~/helion/hos/ansible
ansible-playbook -i hosts/localhost ready-deployment.yml
- 以下のコマンドを実行して、設定を完了します。
cd ~/scratch/ansible/next/hos/ansible
ansible-playbook -i hosts/verb_hosts cinder-reconfigure.yml
- 次に、ボリュームタイプの設定に進みます…。
SolidFire OpenStack の詳細はこちらをご覧ください。
Originally published on allthingscloud.eu (2015-12-09).