4aabfd234397b94cdf38a3ac2e252cc7537e01a2
[plcapi.git] / db-config.d / 010-slice_tags
1 # -*-python-*-
2 #################### slice tag types
3 # xxx this should move to PLC/Accessors
4
5 # vref is now defined in an accessor
6 # initscript is now defined in an accessor
7     
8 # Setup default slice tag types
9 slicetag_types = \
10 [
11     # Slice type (only vserver is supported)
12     {'tagname': "type",
13      'description': "Type of slice (e.g. vserver)",
14      'category' : 'slice/general',
15      'roles': ['admin','pi']},
16     
17     # System slice
18     {'tagname': "system",
19      'description': "Is a default system slice (1) or not (0 or unset)",
20      'category' : 'slice/general'},
21     
22     # Slice enabled (1) or suspended (0)
23     {'tagname': "enabled",
24      'description': "Slice enabled (1 or unset) or suspended (0)",
25      'category' : 'slice/general'},
26     
27     # IP Addresses for a Slice
28     {'tagname': "ip_addresses",
29      'description': "Add an ip address to a slice/sliver.",
30      'category' : 'slice/rspec'},
31     {'tagname': "isolate_loopback",
32      'description': "Create an isolated loopback interface within the vserver rather than sharing with all vservers.",
33      'category' : 'slice/rspec'},
34     
35     # CPU share
36     {'tagname': "cpu_pct",
37      'description': "Reserved CPU percent",
38      'category' : 'slice/rspec'},
39     {'tagname': "cpu_share",
40      'description': "Number of CPU shares",
41      'category' : 'slice/rspec'},
42     {'tagname': "cpu_cores",
43      'description': "Number of CPU cores",
44      'category': 'slice/rspec'},
45     {'tagname': "cpu_freezable",
46      'description': "Slice processes should be frozen if cpu_cores is 0",
47      'category': 'slice/rspec'},     
48
49     # Bandwidth limits
50     {'tagname': "net_min_rate",
51      'description': "Minimum bandwidth (kbps)",
52      'category' : 'slice/rspec'},
53     {'tagname': "net_max_rate",
54      'description': "Maximum bandwidth (kbps)",
55      'category' : 'slice/rspec'},
56     {'tagname': "net_i2_min_rate",
57      'description': "Minimum bandwidth over I2 routes (kbps)",
58      'category' : 'slice/rspec'},
59     {'tagname': "net_i2_max_rate",
60      'description': "Maximum bandwidth over I2 routes (kbps)",
61      'category' : 'slice/rspec'},
62     {'tagname': "net_max_kbyte",
63      'description': "Maximum daily network Tx KByte limit.",
64      'category' : 'slice/rspec'},
65     {'tagname': "net_thresh_kbyte",
66      'description': "KByte limit before warning and throttling.",
67      'category' : 'slice/rspec'},
68     {'tagname': "net_i2_max_kbyte",
69      'description': "Maximum daily network Tx KByte limit to I2 hosts.",
70      'category' : 'slice/rspec'},
71     {'tagname': "net_i2_thresh_kbyte",
72      'description': "KByte limit to I2 hosts before warning and throttling.",
73      'category' : 'slice/rspec'},
74     {'tagname': "net_share",
75      'description': "Number of bandwidth shares",
76      'category' : 'slice/rspec'},
77     {'tagname': "net_i2_share",
78      'description': "Number of bandwidth shares over I2 routes",
79      'category' : 'slice/rspec'},
80     
81     # Disk quota
82     {'tagname': "disk_max",
83      'description': "Disk quota (1k disk blocks)",
84      'category' : 'slice/rspec'},
85     
86     # deprecated in nov. 2010
87     # Proper operations
88     #{'tagname': "proper_op",
89     # 'description': "Proper operation (e.g. bind_socket)",
90     # 'category' : 'slice/rspec'},
91     
92     # VServer capabilities 
93     {'tagname': "capabilities",
94      'description': "VServer bcapabilities (separate by commas)",
95      'category' : 'slice/rspec'},
96     
97     # Vsys
98     {'tagname': "vsys",
99      'description': "Bind vsys script fd's to a slice's /vsys directory.",
100      'category' : 'slice/rspec'},
101     {'tagname': "vsys_vnet",
102      'description': """Specify the IP range that can be used in a given slice
103 for virtual devices involved in topologies, e.g. 192.168.100.0/24""",
104      'category': 'slice/rspec'},
105     
106     # CoDemux
107     {'tagname': "codemux",
108      'description': "Demux HTTP between slices using localhost ports. Value in the form 'host, localhost port'.",
109      'category' : 'slice/rspec'},
110     
111     # Delegation
112     {'tagname': "delegations",
113      'description': "Coma seperated list of slices to give delegation authority to.",
114      'category' : 'slice/rspec',
115      'roles' : ['admin','pi','user']},
116
117     # Capability to give a sliver access to unused raw disk
118     {'tagname': "rawdisk",
119      'description': "map unused raw disk devices into the slice",
120      'category' : 'slice/access', # we should get rid of this category thing
121      'roles': ['admin','pi']},
122
123     { 'tagname' : 'exempt_slice_until',
124       'description' : 'Exclude this slice from MyOps until given date (YYYYMMDD)',
125       'category' : 'slice/myops'},
126
127     # DistributedRateLimiting slice
128     {'tagname': "drl",
129      'description': "Is a default Distributed Rate Limiting slice (1) or not (0 or unset)",
130      'category' : 'slice/general'},
131
132 ]
133
134 import resource
135 # add in the platform supported rlimits to the default_attribute_types
136 for entry in resource.__dict__.keys() + ["VLIMIT_OPENFD"]:
137     if entry.find("LIMIT_")==1:
138         rlim = entry[len("RLIMIT_"):]
139         rlim = rlim.lower()
140         for ty in ("min","soft","hard"):
141             attribute = {
142                 'tagname': "%s_%s"%(rlim,ty),
143                 'description': "Per sliver RLIMIT %s_%s."%(rlim,ty),
144                 'category': 'slice/limit',
145                 }
146             slicetag_types.append(attribute)
147
148 for slicetag_type in slicetag_types:
149     SetTagType(slicetag_type)