Merge "Remove support message for using keypair UUID"

This commit is contained in:
Jenkins 2017-03-22 07:56:48 +00:00 committed by Gerrit Code Review
commit 02bf02f769
5 changed files with 6 additions and 6 deletions

View File

@ -333,7 +333,7 @@ insecure_registry:
type: string
keypair_id:
description: |
The name or UUID of the SSH keypair to configure in the bay/cluster servers
The name of the SSH keypair to configure in the bay/cluster servers
for ssh access. Users will need the key to be able to ssh to the servers in
the bay/cluster. The login name is specific to the bay/cluster driver, for
example with fedora-atomic image, default login name is ``fedora``.

View File

@ -113,7 +113,7 @@ They are loosely grouped as: mandatory, infrastructure, COE specific.
This is a mandatory parameter and there is no default value.
--keypair \<keypair\>
The name or UUID of the SSH keypair to configure in the cluster servers
The name of the SSH keypair to configure in the cluster servers
for ssh access. You will need the key to be able to ssh to the
servers in the cluster. The login name is specific to the cluster
driver. If keypair is not provided in template it will be required at
@ -441,7 +441,7 @@ follows:
been deleted.
--keypair \<keypair\>
The name or UUID of the SSH keypair to configure in the cluster servers
The name of the SSH keypair to configure in the cluster servers
for ssh access. You will need the key to be able to ssh to the
servers in the cluster. The login name is specific to the cluster
driver. If keypair is not provided it will attempt to use the value in

View File

@ -64,7 +64,7 @@ class BayModel(base.APIBase):
keypair_id = wsme.wsattr(wtypes.StringType(min_length=1, max_length=255),
mandatory=True)
"""The name or id of the nova ssh keypair"""
"""The name of the nova ssh keypair"""
external_network_id = wtypes.StringType(min_length=1, max_length=255)
"""The external network to attach to the Bay"""

View File

@ -100,7 +100,7 @@ class Cluster(base.APIBase):
keypair = wsme.wsattr(wtypes.StringType(min_length=1, max_length=255),
default=None)
"""The name or id of the nova ssh keypair"""
"""The name of the nova ssh keypair"""
node_count = wsme.wsattr(wtypes.IntegerType(minimum=1), default=1)
"""The node count for this cluster. Default to 1 if not set"""

View File

@ -65,7 +65,7 @@ class ClusterTemplate(base.APIBase):
keypair_id = wsme.wsattr(wtypes.StringType(min_length=1, max_length=255),
default=None)
"""The name or id of the nova ssh keypair"""
"""The name of the nova ssh keypair"""
external_network_id = wtypes.StringType(min_length=1, max_length=255)
"""The external network to attach to the Cluster"""