Ps Cinder: Added support for password less login

Added missing san_private_key parameter used for password less SSH
authentication.

Change-Id: I6d7544b525055318aa567f9cbbe318d82bafacf0
Depends-On: 70db86d3366f85edf563aa73c533931a21cfab4d
This commit is contained in:
rajinir 2017-06-26 14:17:02 -05:00
parent ce9f018e42
commit 9b122cd9e9
3 changed files with 9 additions and 0 deletions

View File

@ -23,6 +23,7 @@ parameter_defaults:
CinderDellPsSanIp: '' CinderDellPsSanIp: ''
CinderDellPsSanLogin: '' CinderDellPsSanLogin: ''
CinderDellPsSanPassword: '' CinderDellPsSanPassword: ''
CinderDellPsSanPrivateKey: ''
CinderDellPsSanThinProvision: true CinderDellPsSanThinProvision: true
CinderDellPsGroupname: 'group-0' CinderDellPsGroupname: 'group-0'
CinderDellPsPool: 'default' CinderDellPsPool: 'default'

View File

@ -31,6 +31,9 @@ parameters:
CinderDellPsSanPassword: CinderDellPsSanPassword:
type: string type: string
hidden: true hidden: true
CinderDellPsSanPrivateKey:
type: string
default: ''
CinderDellPsSanThinProvision: CinderDellPsSanThinProvision:
type: boolean type: boolean
default: true default: true
@ -83,6 +86,7 @@ outputs:
cinder::backend::eqlx::san_ip: {get_param: CinderDellPsSanIp} cinder::backend::eqlx::san_ip: {get_param: CinderDellPsSanIp}
cinder::backend::eqlx::san_login: {get_param: CinderDellPsSanLogin} cinder::backend::eqlx::san_login: {get_param: CinderDellPsSanLogin}
cinder::backend::eqlx::san_password: {get_param: CinderDellPsSanPassword} cinder::backend::eqlx::san_password: {get_param: CinderDellPsSanPassword}
cinder::backend::eqlx::san_private_key: {get_param: CinderDellPsSanPrivateKey}
cinder::backend::eqlx::san_thin_provision: {get_param: CinderDellPsSanThinProvision} cinder::backend::eqlx::san_thin_provision: {get_param: CinderDellPsSanThinProvision}
cinder::backend::eqlx::eqlx_group_name: {get_param: CinderDellPsGroupname} cinder::backend::eqlx::eqlx_group_name: {get_param: CinderDellPsGroupname}
cinder::backend::eqlx::eqlx_pool: {get_param: CinderDellPsPool} cinder::backend::eqlx::eqlx_pool: {get_param: CinderDellPsPool}

View File

@ -0,0 +1,4 @@
---
features:
- Added new parameter san_private_key to configure SSH Private Key
for the PS Series cinder backend