A profile is a template used to create and manage nodes, i.e. objects
exposed by other OpenStack services. A profile encodes the information needed
for node creation in a property named spec
.
To examine the known profile types:
def list_profile_types(conn):
print("List Profile Types:")
for pt in conn.cluster.profile_types():
print(pt.to_dict())
Full example: manage profile type
To get the details about a profile type, you need to provide the name of it.
def get_profile_type(conn):
print("Get Profile Type:")
pt = conn.cluster.get_profile_type('os.nova.server-1.0')
print(pt.to_dict())
Full example: manage profile type
Except where otherwise noted, this document is licensed under Creative Commons Attribution 3.0 License. See all OpenStack Legal Documents.