| <?xml version="1.0" encoding="ISO-8859-1"?> |
| <!-- |
| |
| Licensed to the Apache Software Foundation (ASF) under one |
| or more contributor license agreements. See the NOTICE file |
| distributed with this work for additional information |
| regarding copyright ownership. The ASF licenses this file |
| to you 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. |
| |
| --> |
| |
| <!-- You can have 1..n cartridge elements. --> |
| <cartridge type="php"> |
| <!-- cartridge element can have 0..n properties, and they'll be overwritten by the properties |
| specified under iaasProvider child elements of cartridge element. --> |
| <property name="ss" value="slsls"/> |
| |
| <!-- A cartridge element should add a reference to an existing IaaS provider (specified |
| in the above <iaasProviders> section) or it can create a completely new IaaS |
| Provider (which should have a unique "type" attribute. --> |
| <iaasProvider type="openstack"> |
| <imageId>nova/xxxxxxxxxx</imageId> |
| <property name="keyPair" value="aa"/> |
| <property name="instanceType" value="1"/> |
| <property name="payload" value="resources/as.txt"/> |
| </iaasProvider> |
| <iaasProvider type="ec2"> |
| <imageId>xxxxxxxxxx</imageId> |
| <property name="keyPair" value="aa"/> |
| <property name="securityGroups" value="manager,cep,mb,default"/> |
| <property name="instanceType" value="m1.large"/> |
| <property name="payload" value="resources/as-ec2.txt"/> |
| </iaasProvider> |
| |
| <deployment> |
| <dir>abc/def</dir> |
| </deployment> |
| |
| <appTypes> |
| <appType name="axis2services" appSpecificMapping="true"/> |
| <appType name="webapps" appSpecificMapping="false"/> |
| </appTypes> |
| </cartridge> |
| |