b7fcec8869d19ba97e41e4ba602529a1586877ff
[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     
46     # Bandwidth limits
47     {'tagname': "net_min_rate",
48      'description': "Minimum bandwidth (kbps)",
49      'category' : 'slice/rspec'},
50     {'tagname': "net_max_rate",
51      'description': "Maximum bandwidth (kbps)",
52      'category' : 'slice/rspec'},
53     {'tagname': "net_i2_min_rate",
54      'description': "Minimum bandwidth over I2 routes (kbps)",
55      'category' : 'slice/rspec'},
56     {'tagname': "net_i2_max_rate",
57      'description': "Maximum bandwidth over I2 routes (kbps)",
58      'category' : 'slice/rspec'},
59     {'tagname': "net_max_kbyte",
60      'description': "Maximum daily network Tx KByte limit.",
61      'category' : 'slice/rspec'},
62     {'tagname': "net_thresh_kbyte",
63      'description': "KByte limit before warning and throttling.",
64      'category' : 'slice/rspec'},
65     {'tagname': "net_i2_max_kbyte",
66      'description': "Maximum daily network Tx KByte limit to I2 hosts.",
67      'category' : 'slice/rspec'},
68     {'tagname': "net_i2_thresh_kbyte",
69      'description': "KByte limit to I2 hosts before warning and throttling.",
70      'category' : 'slice/rspec'},
71     {'tagname': "net_share",
72      'description': "Number of bandwidth shares",
73      'category' : 'slice/rspec'},
74     {'tagname': "net_i2_share",
75      'description': "Number of bandwidth shares over I2 routes",
76      'category' : 'slice/rspec'},
77     
78     # Disk quota
79     {'tagname': "disk_max",
80      'description': "Disk quota (1k disk blocks)",
81      'category' : 'slice/rspec'},
82     
83     # deprecated in nov. 2010
84     # Proper operations
85     #{'tagname': "proper_op",
86     # 'description': "Proper operation (e.g. bind_socket)",
87     # 'category' : 'slice/rspec'},
88     
89     # VServer capabilities 
90     {'tagname': "capabilities",
91      'description': "VServer bcapabilities (separate by commas)",
92      'category' : 'slice/rspec'},
93     
94     # Vsys
95     {'tagname': "vsys",
96      'description': "Bind vsys script fd's to a slice's /vsys directory.",
97      'category' : 'slice/rspec'},
98     {'tagname': "vsys_vnet",
99      'description': """Specify the IP range that can be used in a given slice
100 for virtual devices involved in topologies, e.g. 192.168.100.0/24""",
101      'category': 'slice/rspec'},
102     
103     # CoDemux
104     {'tagname': "codemux",
105      'description': "Demux HTTP between slices using localhost ports. Value in the form 'host, localhost port'.",
106      'category' : 'slice/rspec'},
107     
108     # Delegation
109     {'tagname': "delegations",
110      'description': "Coma seperated list of slices to give delegation authority to.",
111      'category' : 'slice/rspec',
112      'roles' : ['admin','pi','user']},
113
114     # Capability to give a sliver access to unused raw disk
115     {'tagname': "rawdisk",
116      'description': "map unused raw disk devices into the slice",
117      'category' : 'slice/access', # we should get rid of this category thing
118      'roles': ['admin','pi']},
119
120     { 'tagname' : 'exempt_slice_until',
121       'description' : 'Exclude this slice from MyOps until given date (YYYYMMDD)',
122       'category' : 'slice/myops'},
123
124     # DistributedRateLimiting slice
125     {'tagname': "drl",
126      'description': "Is a default Distributed Rate Limiting slice (1) or not (0 or unset)",
127      'category' : 'slice/general'},
128
129 ]
130
131 import resource
132 # add in the platform supported rlimits to the default_attribute_types
133 for entry in resource.__dict__.keys() + ["VLIMIT_OPENFD"]:
134     if entry.find("LIMIT_")==1:
135         rlim = entry[len("RLIMIT_"):]
136         rlim = rlim.lower()
137         for ty in ("min","soft","hard"):
138             attribute = {
139                 'tagname': "%s_%s"%(rlim,ty),
140                 'description': "Per sliver RLIMIT %s_%s."%(rlim,ty),
141                 'category': 'slice/limit',
142                 }
143             slicetag_types.append(attribute)
144
145 for slicetag_type in slicetag_types:
146     SetTagType(slicetag_type)