remove all refrences to level1_auth
[sfa.git] / config / default_config.xml
1 <?xml version="1.0" encoding="utf-8"?>
2
3 <!--
4 Default SFA configuration file
5
6 Thierry Parmentelat 
7
8 $Id$
9 $URL$
10 -->
11
12 <!DOCTYPE configuration PUBLIC "-//PlanetLab Central//DTD PLC configuration//EN" "plc_config.dtd">
13
14 <configuration>
15   <variables>
16
17     <!-- ======================================== -->
18     <category id="sfa">
19       <name>General</name>
20       <description>Basic system variables.</description>
21
22       <variablelist>
23         <variable id="interface_hrn" type="string">
24           <name>Human readable name</name>
25           <value>plc</value>
26           <description>The human readable name for this interface.</description>
27         </variable>
28
29         <variable id="api_debug" type="boolean">
30           <name>Debug</name>
31           <value>false</value>
32           <description>Flag to turn debug on.</description>
33         </variable>
34
35       </variablelist>
36     </category>
37
38     <!-- ======================================== -->
39     <category id="sfa_registry">
40       <name>Registry</name>
41       <description>The settings that affect the registry that will run
42       as part of this SFA instance.</description>
43
44       <variablelist>
45         <variable id="enabled" type="boolean">
46           <name>Enable Registry</name>
47           <value>true</value>
48           <description>Allows this local SFA instance to run as a
49           registry.</description>
50         </variable>
51
52         <variable id="type" type="string">
53           <name>Registry type</name>
54           <value>pl</value>
55           <description>The type of backend server for this
56           registry. Some registries may not be myplc.</description>
57         </variable>
58
59         <variable id="host" type="hostname">
60           <name>Hostname</name>
61           <value>localhost</value>
62           <description>The hostname where the registry is expected to
63           be found; using localhost when the local registry is enabled
64           seems reasonable.</description>
65         </variable>
66
67         <variable id="port" type="int">
68           <name>Port number</name>
69           <value>12345</value>
70           <description>The port where the registry is to be found.</description>
71         </variable>
72
73         <variable id="root_auth" type="string">
74           <name>Root Authority</name>
75           <value>plc</value>
76           <description>The hrn of the registry's root auth.</description>
77         </variable>
78
79     </variablelist>
80     </category>
81
82     <!-- ======================================== -->
83     <category id="sfa_aggregate">
84       <name>Aggregate</name>
85       <description>The settings that affect the aggregate manager that will run
86       as part of this SFA instance.</description>
87
88       <variablelist>
89         <variable id="enabled" type="boolean">
90           <name>Enable Aggregate</name>
91           <value>true</value>
92           <description>Allows this local SFA instance to run as an
93           aggregate manager.</description>
94         </variable>
95
96         <variable id="type" type="string">
97           <name>Aggregate type</name>
98           <value>pl</value>
99           <description>The type of backend server for this
100           aggregate. Some aggregates may not be myplc.</description>
101         </variable>
102     
103     <variable id="rspec_schema" type="string">
104       <name>RSpec Schema</name>
105       <value>/etc/sfa/pl.rng</value>
106       <description>The path to the default schema</description>
107     </variable>
108
109         <variable id="host" type="hostname">
110           <name>Hostname</name>
111           <value>localhost</value>
112           <description>The hostname where the aggregate is expected to
113           be found.</description>
114         </variable>
115
116         <variable id="port" type="int">
117           <name>Port number</name>
118           <value>12346</value>
119           <description>The port where the aggregate is to be found.</description>
120         </variable>
121       </variablelist>
122
123     </category>
124
125     <!-- ======================================== -->
126     <category id="sfa_sm">
127       <name>Slice Manager</name>
128       <description>The settings that affect the slice manager that will run
129       as part of this SFA instance.</description>
130
131       <variablelist>
132         <variable id="enabled" type="boolean">
133           <name>Enable Slice Manager</name>
134           <value>true</value>
135           <description>Allows this local SFA instance to run as a
136           slice manager.</description>
137         </variable>
138
139         <variable id="type" type="string">
140           <name>Slice Manager type</name>
141           <value>pl</value>
142           <description>The type of backend server for this
143           slice manager. Not all slice managers are myplc.</description>
144         </variable>
145
146         <variable id="host" type="hostname">
147           <name>Hostname</name>
148           <value>localhost</value>
149           <description>The hostname where the slice manager is expected to
150           be found.</description>
151         </variable>
152
153         <variable id="port" type="int">
154           <name>Port number</name>
155           <value>12347</value>
156           <description>The port where the slice manager is to be found.</description>
157         </variable>
158       </variablelist>
159     </category>
160
161     <!-- ======================================== -->
162     <category id="sfa_plc">
163       <name></name>
164       <description>The settings that tell this SFA instance how to interact with the underlying PLC. Refer to plc-config-tty on this installation for more information.</description>
165
166       <variablelist>
167         <variable id="user" type="string">
168           <name>PLC login name for an admin user; SFA will carry on operations under this account.</name>
169           <value>root@localhost.localdomain</value>
170           <description></description>
171         </variable>
172
173         <variable id="password" type="string">
174           <name>Password</name>
175           <value>root</value>
176           <description>The PLC password for SFA_PLC_USER.</description>
177         </variable>
178
179         <variable id="url" type="string">
180           <name>URL</name>
181           <value>https://localhost:443/PLCAPI/</value>
182           <description>Full URL of PLC interface.</description>
183         </variable>
184
185         <variable id="db_name" type="string">
186           <name>Database name</name>
187           <value>planetlab5</value>
188           <description>Planetlab database name.</description>
189         </variable>
190
191         <variable id="db_host" type="hostname">
192           <name>Datbase host</name>
193           <value>localhost</value>
194           <description>The host where the PLC database can be reached.</description>
195         </variable>
196
197         <variable id="db_port" type="int">
198           <name>Database port</name>
199           <value>5432</value>
200           <description>The port where the PLC database can be reached.</description>
201         </variable>
202
203         <variable id="db_user" type="string">
204           <name>Database user</name>
205           <value>pgsqluser</value>
206           <description></description>
207         </variable>
208
209         <variable id="db_password" type="string">
210           <name>Database password</name>
211           <value></value>
212           <description>The password for PLC_DB_USER.</description>
213         </variable>
214
215       </variablelist>
216     </category>
217
218   </variables>
219
220   <comps>
221     <!-- deprecated - not used anymore - use .lst files instead -->
222   </comps>
223
224 </configuration>