split plc.d/ and db-config.d between myplc and plcapi modules as a first step
[plcapi.git] / db-config.d / 011-node_tags
diff --git a/db-config.d/011-node_tags b/db-config.d/011-node_tags
new file mode 100644 (file)
index 0000000..3d03521
--- /dev/null
@@ -0,0 +1,21 @@
+# -*-python-*-
+# $Id$
+# $URL$
+#################### node tags
+default_node_tags = [
+    { 'tagname' : 'arch',
+      'description' : 'architecture name',
+      'category' : 'node/config', 
+      'min_role_id' : 40} ,
+    { 'tagname' : 'pldistro',
+      'description' : 'PlanetLab distribution',
+      'category' : 'node/config', 
+      'min_role_id' : 10} ,
+    { 'tagname' : 'deployment',
+      'description' : 'typically "alpha", "beta", or "production"',
+      'category' : 'node/operation', 
+      'min_role_id' : 10} ,
+
+    ]
+
+for node_type in default_node_tags: SetTagType (node_type)