murano-apps/WordPress/package/UI/ui.yaml
Ekaterina Chernova 98ae90c675 Add license information
* LICENSE file placed to every package
* License information is shown during application creation
* License added to every file

Change-Id: I682f3d9a09d0c0b575206d79223c1822c4b94f27
Closes-Bug: #1446121
2015-04-20 19:15:15 +03:00

85 lines
2.8 KiB
YAML

# 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
# a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
# WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
# License for the specific language governing permissions and limitations
# under the License.
Version: 2
Application:
?:
type: io.murano.apps.WordPress
name: $.appConfiguration.name
database: $.appConfiguration.database
server: $.appConfiguration.server
monitoring: $.appConfiguration.zabbix
dbName: $.dbConfiguration.database
dbUser: $.dbConfiguration.username
dbPassword: $.dbConfiguration.password
Forms:
- appConfiguration:
fields:
- name: license
type: string
description: Apache License, Version 2.0
hidden: true
required: false
- name: name
type: string
label: Application Name
initial: 'WordPress'
description: >-
Enter a desired name for the application. Just A-Z, a-z, 0-9, dash and
underline are allowed
- name: database
type: io.murano.databases.MySql
label: Database Server
description: >-
Select a database server to host the application`s database
- name: server
type: io.murano.apps.apache.ApacheHttpServer
label: HTTP Server
description: >-
Select an instance of Apache HTTP Server to run the app
- name: zabbix
type: io.murano.apps.ZabbixAgent
label: Monitoring
required: false
description: >-
Select an instance of monitoring system (optional)
- dbConfiguration:
fields:
- name: title
type: string
required: false
hidden: true
descriptionTitle: Database Configuration
description: Specify the properties of the database which will be created at the selected DB Server
- name: database
type: string
label: Database name
initial: wordpress
description: >-
Please, provide database name that is going to be created
- name: username
type: string
initial: wp_user
label: Username
description: >-
Please, provide username that is going to be used to connect to the database
- name: password
type: password
label: Password
descriptionTitle: Password
description: >-
Please, provide password that is going to be used to connect to the database