Remove support message for using keypair UUID
UUID for keypair is no longer supported from heat and nova cli. This patch suggest to remove the support message from magnum. Closes-Bug: #1674211 Change-Id: Idb67fc86f067387060a381c9d2d0ed0f8c953c21
This commit is contained in:
parent
dd2a8520cb
commit
1ca8f18015
@ -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``.
|
||||
|
@ -112,7 +112,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
|
||||
@ -436,7 +436,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
|
||||
|
@ -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"""
|
||||
|
@ -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"""
|
||||
|
@ -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"""
|
||||
|
Loading…
Reference in New Issue
Block a user