Skip to content
Snippets Groups Projects
Commit 9e62641c authored by Zuul's avatar Zuul Committed by Gerrit Code Review
Browse files

Merge "Move Cinder backend passwords to passwords.yml"

parents 5616490a 4829ed2c
No related branches found
No related tags found
No related merge requests found
...@@ -153,7 +153,6 @@ cinder_iscsi_helper: "tgtadm" ...@@ -153,7 +153,6 @@ cinder_iscsi_helper: "tgtadm"
# iscsi # iscsi
hnas_iscsi_backend: "hnas_iscsi_backend" hnas_iscsi_backend: "hnas_iscsi_backend"
hnas_iscsi_username: hnas_iscsi_username:
hnas_iscsi_password:
hnas_iscsi_mgmt_ip0: hnas_iscsi_mgmt_ip0:
hnas_iscsi_svc0_volume_type: hnas_iscsi_svc0_volume_type:
hnas_iscsi_svc0_hdp: hnas_iscsi_svc0_hdp:
...@@ -162,7 +161,6 @@ hnas_iscsi_svc0_ip: ...@@ -162,7 +161,6 @@ hnas_iscsi_svc0_ip:
# nfs # nfs
hnas_nfs_backend: "hnas_nfs_backend" hnas_nfs_backend: "hnas_nfs_backend"
hnas_nfs_username: hnas_nfs_username:
hnas_nfs_password:
hnas_nfs_mgmt_ip0: hnas_nfs_mgmt_ip0:
hnas_nfs_svc0_volume_type: hnas_nfs_svc0_volume_type:
hnas_nfs_svc0_hdp: hnas_nfs_svc0_hdp:
...@@ -173,7 +171,6 @@ hnas_nfs_svc0_hdp: ...@@ -173,7 +171,6 @@ hnas_nfs_svc0_hdp:
zfssa_iscsi_backend: "zfssa_iscsi_backend" zfssa_iscsi_backend: "zfssa_iscsi_backend"
zfssa_iscsi_san_ip: zfssa_iscsi_san_ip:
zfssa_iscsi_login: zfssa_iscsi_login:
zfssa_iscsi_password:
zfssa_iscsi_pool: zfssa_iscsi_pool:
zfssa_iscsi_project: zfssa_iscsi_project:
zfssa_iscsi_initiator_group: zfssa_iscsi_initiator_group:
......
...@@ -76,7 +76,6 @@ contents: ...@@ -76,7 +76,6 @@ contents:
volume_driver = cinder.volume.drivers.hitachi.hnas_iscsi.HNASISCSIDriver volume_driver = cinder.volume.drivers.hitachi.hnas_iscsi.HNASISCSIDriver
volume_iscsi_backend = hnas_iscsi_backend volume_iscsi_backend = hnas_iscsi_backend
hnas_iscsi_username = supervisor hnas_iscsi_username = supervisor
hnas_iscsi_password = supervisor
hnas_iscsi_mgmt_ip0 = <hnas_ip> hnas_iscsi_mgmt_ip0 = <hnas_ip>
hnas_chap_enabled = True hnas_chap_enabled = True
...@@ -84,6 +83,12 @@ contents: ...@@ -84,6 +83,12 @@ contents:
hnas_iscsi_svc0_hdp = FS-Baremetal1 hnas_iscsi_svc0_hdp = FS-Baremetal1
hnas_iscsi_svc0_iscsi_ip = <svc0_ip> hnas_iscsi_svc0_iscsi_ip = <svc0_ip>
Then set password for the backend in ``/etc/kolla/passwords.yml``:
.. code-block:: console
hnas_iscsi_password: supervisor
NFS backend NFS backend
----------- -----------
...@@ -105,13 +110,18 @@ add the contents: ...@@ -105,13 +110,18 @@ add the contents:
volume_driver = cinder.volume.drivers.hitachi.hnas_nfs.HNASNFSDriver volume_driver = cinder.volume.drivers.hitachi.hnas_nfs.HNASNFSDriver
volume_nfs_backend = hnas_nfs_backend volume_nfs_backend = hnas_nfs_backend
hnas_nfs_username = supervisor hnas_nfs_username = supervisor
hnas_nfs_password = supervisor
hnas_nfs_mgmt_ip0 = <hnas_ip> hnas_nfs_mgmt_ip0 = <hnas_ip>
hnas_chap_enabled = True hnas_chap_enabled = True
hnas_nfs_svc0_volume_type = nfs_gold hnas_nfs_svc0_volume_type = nfs_gold
hnas_nfs_svc0_hdp = <svc0_ip>/<export_name> hnas_nfs_svc0_hdp = <svc0_ip>/<export_name>
Then set password for the backend in ``/etc/kolla/passwords.yml``:
.. code-block:: console
hnas_nfs_password: supervisor
Configuration on Kolla deployment Configuration on Kolla deployment
--------------------------------- ---------------------------------
......
...@@ -34,6 +34,17 @@ vmware_dvs_host_password: ...@@ -34,6 +34,17 @@ vmware_dvs_host_password:
vmware_nsxv_password: vmware_nsxv_password:
vmware_vcenter_host_password: vmware_vcenter_host_password:
#####################
# Hitachi NAS support
#####################
hnas_iscsi_password:
hnas_nfs_password:
######################
# Oracle ZFSSA support
######################
zfssa_iscsi_password:
#################### ####################
# OpenStack options # OpenStack options
#################### ####################
......
---
features:
- |
Move storage backend passwords from main.yml to /etc/kolla/passwords.yml
upgrade:
- |
Before upgrading one needs to set Hitachi NAS and Oracle ZFSSA passwors in
/etc/kolla/passwords.yml file.
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment