Skip to content
Snippets Groups Projects
Commit 4829ed2c authored by Vladislav Belogrudov's avatar Vladislav Belogrudov
Browse files

Move Cinder backend passwords to passwords.yml

Move Hitachi NAS and Oracle ZFSSA passwords
to /etc/kolla/passwords.yml

Change-Id: I1c94c45701fda5430b5d5a88c719db13d1956b11
Closes-Bug: #1733565
parent fc0391dc
No related branches found
No related tags found
No related merge requests found
......@@ -153,7 +153,6 @@ cinder_iscsi_helper: "tgtadm"
# iscsi
hnas_iscsi_backend: "hnas_iscsi_backend"
hnas_iscsi_username:
hnas_iscsi_password:
hnas_iscsi_mgmt_ip0:
hnas_iscsi_svc0_volume_type:
hnas_iscsi_svc0_hdp:
......@@ -162,7 +161,6 @@ hnas_iscsi_svc0_ip:
# nfs
hnas_nfs_backend: "hnas_nfs_backend"
hnas_nfs_username:
hnas_nfs_password:
hnas_nfs_mgmt_ip0:
hnas_nfs_svc0_volume_type:
hnas_nfs_svc0_hdp:
......@@ -173,7 +171,6 @@ hnas_nfs_svc0_hdp:
zfssa_iscsi_backend: "zfssa_iscsi_backend"
zfssa_iscsi_san_ip:
zfssa_iscsi_login:
zfssa_iscsi_password:
zfssa_iscsi_pool:
zfssa_iscsi_project:
zfssa_iscsi_initiator_group:
......
......@@ -76,7 +76,6 @@ contents:
volume_driver = cinder.volume.drivers.hitachi.hnas_iscsi.HNASISCSIDriver
volume_iscsi_backend = hnas_iscsi_backend
hnas_iscsi_username = supervisor
hnas_iscsi_password = supervisor
hnas_iscsi_mgmt_ip0 = <hnas_ip>
hnas_chap_enabled = True
......@@ -84,6 +83,12 @@ contents:
hnas_iscsi_svc0_hdp = FS-Baremetal1
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
-----------
......@@ -105,13 +110,18 @@ add the contents:
volume_driver = cinder.volume.drivers.hitachi.hnas_nfs.HNASNFSDriver
volume_nfs_backend = hnas_nfs_backend
hnas_nfs_username = supervisor
hnas_nfs_password = supervisor
hnas_nfs_mgmt_ip0 = <hnas_ip>
hnas_chap_enabled = True
hnas_nfs_svc0_volume_type = nfs_gold
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
---------------------------------
......
......@@ -34,6 +34,17 @@ vmware_dvs_host_password:
vmware_nsxv_password:
vmware_vcenter_host_password:
#####################
# Hitachi NAS support
#####################
hnas_iscsi_password:
hnas_nfs_password:
######################
# Oracle ZFSSA support
######################
zfssa_iscsi_password:
####################
# 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