source: trunk/RSpecExamples/exogeni-1vm-1baremetal-at-renci.rspec @ 3116

Last change on this file since 3116 was 1748, checked in by lnevers@bbn.com, 11 years ago

replace all instances of urn:publicid:IDN+xxxvmsite+authority+cm with urn:publicid:IDN+exogeni.net:xxxvmsite+authority+cm as suggested by Aaron

  • Property svn:executable set to *
File size: 1.9 KB
Line 
1<?xml version="1.0" encoding="UTF-8"?>
2<!--
3This example RSpec shows how to request 1 Bare Metal node and
41 VM from the RENCI ExoGENI Rack. Bare Metal nodes are only
5available via the ExoSM aggregate at
6https://geni.renci.org:11443/orca/xmlrpc
7-->
8
9<rspec type="request"
10        xsi:schemaLocation="http://www.geni.net/resources/rspec/3
11                            http://www.geni.net/resources/rspec/3/request.xsd
12                            http://www.protogeni.net/resources/rspec/ext/shared-vlan/1
13                            http://www.protogeni.net/resources/rspec/ext/shared-vlan/1/request.xsd"
14        xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
15        xmlns:s="http://www.protogeni.net/resources/rspec/ext/shared-vlan/1"
16        xmlns="http://www.geni.net/resources/rspec/3">
17
18<node client_id="BM-1" component_manager_id="urn:publicid:IDN+exogeni.net:rcivmsite+authority+cm" >
19    <sliver_type name="exogeni-m4">
20      <disk_image name="http://geni-images.renci.org/images/standard/debian/deb6-neuca-v1.0.6.xml" version="64ad567ce3b1c0dbaa15bad673bbf556a9593e1c" />
21    </sliver_type>
22    <interface client_id="BM-1:if0">
23   <ip address="172.16.1.7" netmask="255.255.255.0" />
24    </interface>
25  </node>
26
27 <node client_id="VM-1" component_manager_id="urn:publicid:IDN+exogeni.net:rcivmsite+authority+cm" >
28    <sliver_type name="m1.small">
29      <disk_image name="http://geni-images.renci.org/images/standard/debian/deb6-neuca-v1.0.6.xml" version="64ad567ce3b1c0dbaa15bad673bbf556a9593e1c" />
30    </sliver_type>
31    <interface client_id="VM-1:if0">
32   <ip address="172.16.1.8" netmask="255.255.255.0" />
33    </interface>
34  </node>
35
36  <link client_id="lan0">
37    <component_manager name="urn:publicid:IDN+exogeni.net:rcivmsite+authority+cm"/>
38    <interface_ref client_id="BM-1:if0"/>
39    <interface_ref client_id="VM-1:if0"/>
40    <property source_id="BM-1:if0" dest_id="VM-1:if0" />
41    <property source_id="VM-1:if0" dest_id="BM-1:if0" />
42    <link_type name="lan"/>
43  </link>
44</rspec>
Note: See TracBrowser for help on using the repository browser.