Switch to remote-repos

This commit is contained in:
Ryan Beisner 2016-10-06 14:55:42 +00:00
parent abf0464187
commit 568d50922d
3 changed files with 4 additions and 4 deletions

View File

@ -29,12 +29,12 @@ Once you have this setup you must configure the charm as follow:
charm.
* Apply the following charm config:
* remote-user: username used to access and configure the power node.
* remote-repo: Yum repository url or file url
* remote-repos: Yum repository url(s) or file url(s)
* remote-hosts: IP address of power node
* Example:
```
remote-user: youruser
remote-repo: file:///tmp/openstack-iso/openstack,file:///tmp/other-iso/repofs
remote-repos: file:///tmp/openstack-iso/openstack,file:///tmp/other-iso/repofs
remote-key: id_dsa
remote-hosts: 10.10.10.10 10.10.10.11
```

View File

@ -11,7 +11,7 @@ options:
type: string
default:
description: SSH key to use to access remote compute nodes.
remote-repo:
remote-repos:
type: string
default:
description: Comma separated list of RPM repositorys of OpenStack packages to deploy to remote compute nodes.

View File

@ -43,7 +43,7 @@ CONFIGS = register_configs()
proxy = REMOTEProxy(user=config('remote-user'),
ssh_key=config('remote-key'),
hosts=config('remote-hosts'),
repository=config('remote-repo'),
repository=config('remote-repos'),
password=config('remote-password'))