Use uppercase 'S' in OpenStack
Change-Id: I9cf21e65045f07a2b0ca3e6cdd6afcf54bbfc589
This commit is contained in:
parent
e3f6e05432
commit
92b1fc2b37
@ -50,7 +50,7 @@ Forms:
|
|||||||
type: flavor
|
type: flavor
|
||||||
label: Instance flavor
|
label: Instance flavor
|
||||||
description: >-
|
description: >-
|
||||||
Select registered in Openstack flavor. Consider that application performance
|
Select registered in OpenStack flavor. Consider that application performance
|
||||||
depends on this parameter.
|
depends on this parameter.
|
||||||
required: false
|
required: false
|
||||||
- name: osImage
|
- name: osImage
|
||||||
|
@ -172,7 +172,7 @@ UI Definition Of Active Directory Application
|
|||||||
type: flavor
|
type: flavor
|
||||||
label: Instance flavor
|
label: Instance flavor
|
||||||
description: >-
|
description: >-
|
||||||
Select registered in Openstack flavor. Consider that service performance
|
Select registered in OpenStack flavor. Consider that service performance
|
||||||
depends on this parameter.
|
depends on this parameter.
|
||||||
required: false
|
required: false
|
||||||
- name: osImage
|
- name: osImage
|
||||||
|
@ -102,7 +102,7 @@ UI Definition of telnet application
|
|||||||
type: flavor
|
type: flavor
|
||||||
label: Instance flavor
|
label: Instance flavor
|
||||||
description: >-
|
description: >-
|
||||||
Select registered in Openstack flavor. Consider that application performance
|
Select registered in OpenStack flavor. Consider that application performance
|
||||||
depends on this parameter.
|
depends on this parameter.
|
||||||
required: false
|
required: false
|
||||||
- name: osImage
|
- name: osImage
|
||||||
|
@ -58,7 +58,7 @@ Version history
|
|||||||
~~~~~~~~~~~~~~~
|
~~~~~~~~~~~~~~~
|
||||||
|
|
||||||
+---------+-------------------------------------------------------------------+-------------------+
|
+---------+-------------------------------------------------------------------+-------------------+
|
||||||
| Version | Changes | Openstack Version |
|
| Version | Changes | OpenStack Version |
|
||||||
+=========+===================================================================+===================+
|
+=========+===================================================================+===================+
|
||||||
| 1.0 | - Initial Dymanic UI implementation | Icehouse |
|
| 1.0 | - Initial Dymanic UI implementation | Icehouse |
|
||||||
+---------+-------------------------------------------------------------------+-------------------+
|
+---------+-------------------------------------------------------------------+-------------------+
|
||||||
@ -351,7 +351,7 @@ fields.
|
|||||||
type: flavor
|
type: flavor
|
||||||
label: Instance flavor
|
label: Instance flavor
|
||||||
description: >-
|
description: >-
|
||||||
Select a flavor registered in Openstack. Consider that service performance
|
Select a flavor registered in OpenStack. Consider that service performance
|
||||||
depends on this parameter.
|
depends on this parameter.
|
||||||
required: false
|
required: false
|
||||||
- name: osImage
|
- name: osImage
|
||||||
|
@ -139,9 +139,10 @@ stands for the "class" part of the name:
|
|||||||
FullName: io.murano.apps.apache.ApacheHttpServer
|
FullName: io.murano.apps.apache.ApacheHttpServer
|
||||||
|
|
||||||
.. note::
|
.. note::
|
||||||
|
|
||||||
It is not necessary that all applications belong to one domain.
|
It is not necessary that all applications belong to one domain.
|
||||||
This naming allows to determine an application group by its name.
|
This naming allows to determine an application group by its name.
|
||||||
Openstack-related applications may have full names, started with
|
OpenStack-related applications may have full names, started with
|
||||||
``org.openstack.apps``, for example, ``org.openstack.apps.Rally``
|
``org.openstack.apps``, for example, ``org.openstack.apps.Rally``
|
||||||
|
|
||||||
|
|
||||||
|
@ -126,7 +126,7 @@ services, that have an API.
|
|||||||
External load-balancer
|
External load-balancer
|
||||||
----------------------
|
----------------------
|
||||||
Suppose, you have powerful load-balancer on a real server. And you want to run
|
Suppose, you have powerful load-balancer on a real server. And you want to run
|
||||||
the application on an Openstack VM. Murano can set up new applications to be managed
|
the application on an OpenStack VM. Murano can set up new applications to be managed
|
||||||
by that external load-balancer (LB). Let’s go into more details.
|
by that external load-balancer (LB). Let’s go into more details.
|
||||||
|
|
||||||
To implement this case the following apps are used:
|
To implement this case the following apps are used:
|
||||||
|
@ -96,7 +96,7 @@ For an admin role all packages are available.
|
|||||||
"name": "Telnet",
|
"name": "Telnet",
|
||||||
"type": "linux",
|
"type": "linux",
|
||||||
"description": "Installs Telnet service",
|
"description": "Installs Telnet service",
|
||||||
"author": "Openstack, Inc.",
|
"author": "OpenStack, Inc.",
|
||||||
"created": "2014-04-02T14:31:55",
|
"created": "2014-04-02T14:31:55",
|
||||||
"enabled": true,
|
"enabled": true,
|
||||||
"tags": ["linux", "telnet"],
|
"tags": ["linux", "telnet"],
|
||||||
@ -110,7 +110,7 @@ For an admin role all packages are available.
|
|||||||
"name": "Internet Information Services",
|
"name": "Internet Information Services",
|
||||||
"type": "windows",
|
"type": "windows",
|
||||||
"description": "The Internet Information Service sets up an IIS server and joins it into an existing domain",
|
"description": "The Internet Information Service sets up an IIS server and joins it into an existing domain",
|
||||||
"author": "Openstack, Inc.",
|
"author": "OpenStack, Inc.",
|
||||||
"created": "2014-04-02T14:31:55",
|
"created": "2014-04-02T14:31:55",
|
||||||
"enabled": true,
|
"enabled": true,
|
||||||
"tags": ["windows", "web"],
|
"tags": ["windows", "web"],
|
||||||
|
@ -291,7 +291,7 @@ class Router(object):
|
|||||||
|
|
||||||
|
|
||||||
class Request(webob.Request):
|
class Request(webob.Request):
|
||||||
"""Add some Openstack API-specific logic to the base webob.Request."""
|
"""Add some OpenStack API-specific logic to the base webob.Request."""
|
||||||
|
|
||||||
default_request_content_types = ('application/json',
|
default_request_content_types = ('application/json',
|
||||||
'application/xml',
|
'application/xml',
|
||||||
|
@ -239,7 +239,7 @@ class Package(Base, TimestampMixin):
|
|||||||
fully_qualified_name = sa.Column(sa.String(128),
|
fully_qualified_name = sa.Column(sa.String(128),
|
||||||
nullable=False)
|
nullable=False)
|
||||||
type = sa.Column(sa.String(20), nullable=False, default='class')
|
type = sa.Column(sa.String(20), nullable=False, default='class')
|
||||||
author = sa.Column(sa.String(80), default='Openstack')
|
author = sa.Column(sa.String(80), default='OpenStack')
|
||||||
supplier = sa.Column(st.JsonBlob(), nullable=True, default={})
|
supplier = sa.Column(st.JsonBlob(), nullable=True, default={})
|
||||||
name = sa.Column(sa.String(80), nullable=False)
|
name = sa.Column(sa.String(80), nullable=False)
|
||||||
enabled = sa.Column(sa.Boolean, default=True)
|
enabled = sa.Column(sa.Boolean, default=True)
|
||||||
|
@ -1,4 +1,4 @@
|
|||||||
# Copyright (c) 2015 Openstack Foundation, Inc.
|
# Copyright (c) 2015 OpenStack Foundation, Inc.
|
||||||
#
|
#
|
||||||
# Licensed under the Apache License, Version 2.0 (the "License"); you may
|
# Licensed under the Apache License, Version 2.0 (the "License"); you may
|
||||||
# not use this file except in compliance with the License. You may obtain
|
# not use this file except in compliance with the License. You may obtain
|
||||||
|
Loading…
Reference in New Issue
Block a user