root / Changelog @ 48646327
History | View | Annotate | Download (7.8 kB)
1 |
.. _Changelog: |
---|---|
2 |
|
3 |
Unified Changelog file for Synnefo versions >= 0.13 |
4 |
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ |
5 |
|
6 |
Since v0.13 most of the Synnefo components have been merged into a single |
7 |
repository and have aligned versions. |
8 |
|
9 |
|
10 |
.. _Changelog-0.13next: |
11 |
|
12 |
v0.13next |
13 |
========= |
14 |
|
15 |
Released: UNRELEASED |
16 |
|
17 |
Synnefo-wide |
18 |
------------ |
19 |
* Create 'snf_django' Python package to hold common code for all Synnefo |
20 |
components. |
21 |
|
22 |
Astakos |
23 |
------- |
24 |
* Redesign of the accounting system (quotaholder) and integration into |
25 |
astakos. |
26 |
|
27 |
* Simplified the quotaholder model; removed tables Entity and Policy; now |
28 |
table Holding contains limit and usage for every holding. |
29 |
|
30 |
* Extended table Holding, so that we can keep track of quota for every |
31 |
valid combination of holder (e.g. user), resource, and source (e.g. the |
32 |
default system or some specific project). |
33 |
|
34 |
* Refactored code for issuing and resolving commissions for robustness; |
35 |
added a 'force' option to bypass the upper limit check when issuing a |
36 |
commission. |
37 |
|
38 |
* Simplified syncing to the quotaholder; removed fields from models |
39 |
Project and ProjectMembership, previously needed for syncing; removed |
40 |
state PROJECT_DEACTIVATED from ProjectMembership. |
41 |
|
42 |
* Removed settings ASTAKOS_QUOTAHOLDER_URL, ASTAKOS_QUOTAHOLDER_TOKEN, |
43 |
and ASTAKOS_QUOTAHOLDER_POOLSIZE. |
44 |
|
45 |
* Service and resource specification and handling: |
46 |
|
47 |
* Specified a format for defining resources a service exposes. Migrated |
48 |
internal resource name by prefixing it with service name (e.g. 'vm' |
49 |
becomes 'cyclades.vm'); renamed registered service 'pithos+' to |
50 |
'pithos'. |
51 |
|
52 |
* Specified a procedure to register a service's resources in astakos and |
53 |
set their respective default base quota limit. Removed resource |
54 |
definitions from settings. |
55 |
|
56 |
* Moved service and resource presentation data out of the respective db |
57 |
models into a separate file of UI constants. |
58 |
|
59 |
* Converted the limit on pending applications from a setting to a quotable |
60 |
resource. Converted the related user setting to a user-specific base quota |
61 |
limit. Deprecated model UserSetting; removed setting |
62 |
ASTAKOS_PENDING_APPLICATION_LIMIT. |
63 |
|
64 |
* Changes in locking strategy: |
65 |
|
66 |
* Lock only project's chain for all project operations; lock user before |
67 |
syncing to quotaholder. |
68 |
|
69 |
* When locking multiple rows (e.g. users or holdings) include an ORDER BY |
70 |
clause in the query to impose ordering on locking. |
71 |
|
72 |
* API-related changes: |
73 |
|
74 |
* Implemented API calls for quota, resources, and commissions. |
75 |
|
76 |
* Moved all API calls under '/astakos/api'. Kept also previous locations |
77 |
for backwards compatibility. |
78 |
|
79 |
* Changes in views: |
80 |
|
81 |
* Replaced custom transaction context with a simple decorator for managing |
82 |
transactions and a context 'ExceptionHandler', which logs and suppresses |
83 |
exceptions |
84 |
|
85 |
* Management commands: |
86 |
|
87 |
* Renamed command astakos-quota to quota; user-update to user-modify. |
88 |
|
89 |
* Removed user-set-initial-quota; integrated its functionality in |
90 |
user-modify and quota. |
91 |
|
92 |
* Added quota and project-related information in user-show command; added |
93 |
membership information in project-show. |
94 |
|
95 |
|
96 |
Cyclades |
97 |
-------- |
98 |
* Make 'type' attribute required for network create API request. |
99 |
* Networks not created to all Ganeti backends upon creation, they are instead |
100 |
created to a backend only when a VM connects to the network. |
101 |
* Add 'ASTAKOS_POOLSIZE' setting which tunes the size of the http connection |
102 |
pool to astakos. |
103 |
* Remove 'CYCLADES_USER_CATALOG_URL' and 'CYCLADES_USER_FEEDBACK_URL' settings |
104 |
* Remove CYCLADES_USE_QUOTAHOLDER, CYCLADES_QUOTAHOLDER_TOKEN, |
105 |
CYCLADES_QUOTAHOLDER_URL, CYCLADES_QUOTAHOLDER_POOLSIZE settings |
106 |
* Rename 'cyclades-usage-verify' management command to |
107 |
'reconcile-resources-cyclades'. Also, remove 'cyclades-usage-reset' command, |
108 |
which is equivalent to 'reconcile-resources-cyclades --fix'. |
109 |
* Rename 'cyclades-reconcile-commissions' management command to |
110 |
'reconcile-commissions-cyclades'. |
111 |
* Remove obsolete 'MAX_VMS_PER_USER', 'MAX_NETWORKS_PER_USER', |
112 |
"VMS_USER_QUOTA" and "NETWORKS_USER_QUOTA" settings, since their usage |
113 |
is covered by Quotaholder. |
114 |
|
115 |
|
116 |
Pithos |
117 |
------ |
118 |
* Remove PITHOS_AUTHENTICATION_USERS setting, which was used to override |
119 |
astakos users. |
120 |
* Remove 'PITHOS_USER_CATALOG_URL', 'PITHOS_USER_FEEDBACK_URL' and |
121 |
'PITHOS_USER_LOGIN_URL' settings. |
122 |
* Remove PITHOS_USE_QUOTAHOLDER, PITHOS_QUOTAHOLDER_URL, |
123 |
PITHOS_QUOTAHOLDER_TOKEN and PITHOS_ASTAKOSCLIENT_POOLSIZE |
124 |
|
125 |
Tools |
126 |
----- |
127 |
|
128 |
|
129 |
.. _Changelog-0.13: |
130 |
|
131 |
v0.13 |
132 |
===== |
133 |
|
134 |
Released: Wed Apr 10 18:52:50 EEST 2013 |
135 |
|
136 |
In v0.13 the code was very heavily refactored for increased uniformity since |
137 |
most of the Synnefo components have been merged into a single repository. Thus, |
138 |
**just for this version** we will not document a complete Changelog (features, |
139 |
fixes, improvements, issues, setting changes), but rather just copy from the |
140 |
`NEWS` file with minor additions wherever needed. |
141 |
|
142 |
Synnefo-wide |
143 |
------------ |
144 |
|
145 |
* Support for pooling throughout Synnefo |
146 |
|
147 |
* Pooled Django DB connections, Pithos backend connections, HTTP |
148 |
connections using single `objpool` package |
149 |
|
150 |
* Improved management commands |
151 |
|
152 |
* Unified codebase for output of tables in JSON, CSV |
153 |
|
154 |
* Bring most of Synnefo code inside a single, unified repository |
155 |
|
156 |
* support automatic Python and Debian package builds for individual commits |
157 |
* with automatic version generation |
158 |
|
159 |
* Overhauling of Synnefo settings: renames and refactoring, for increased |
160 |
uniformity (in progress) |
161 |
* Deployment: Standardize on gunicorn, with gevent-based workers |
162 |
and use of Green threads throughout Synnefo |
163 |
* Documentation: New scale-out guide, with distinct node roles, |
164 |
for mass Synnefo deployments |
165 |
|
166 |
Astakos |
167 |
------- |
168 |
|
169 |
* Support multiple authentication methods |
170 |
|
171 |
* Classic (username/password), Shibboleth, LDAP/Active Directory, |
172 |
Google, Twitter, LinkedIn |
173 |
* Users can enable/disable auth methods, and switch between them |
174 |
|
175 |
* Introduce a UUID as a global identifier for users, throughout Synnefo |
176 |
|
177 |
* The UUID remains constant as the user enables/disables login methods |
178 |
|
179 |
* Allow users to modify their email address freely |
180 |
* Per-user, per-resource accounting mechanism (quotaholder) |
181 |
* Full quota support, with per-user, per-resource quotas, based on quotaholder |
182 |
* Projects: Users can create and join Projects |
183 |
|
184 |
* Projects grant extra resources to their members |
185 |
|
186 |
* UI Enhancements for quotas and projects |
187 |
|
188 |
* distinct Usage tab, showing usage of individual resources |
189 |
* Project management UI |
190 |
* New Overview page |
191 |
|
192 |
Cyclades |
193 |
-------- |
194 |
|
195 |
* Commission resources on quotaholder/Astakos |
196 |
* Support mass creation of flavors |
197 |
* Support for the ExtStorage disk template in Ganeti |
198 |
* Query and report quotas in the UI |
199 |
* Pass VM configuration parameters over a VM-side API (`vmapi`) |
200 |
|
201 |
* Do not pass sensitive data as Ganeti OS parameters |
202 |
* Keep sensitive data in memory caches (memcached) and |
203 |
never allow them to hit the disk |
204 |
|
205 |
* Display additional backend information in helpdesk machines list |
206 |
* Allow helpdesk users to search for an account using a known machine id |
207 |
* Helpdesk actions are now logged using the synnefo's common login |
208 |
infrastructure |
209 |
|
210 |
Pithos |
211 |
------ |
212 |
|
213 |
* Support storage of blocks on a RADOS backend, for Archipelago |
214 |
|
215 |
* new settings: |
216 |
PITHOS_RADOS_STORAGE, PITHOS_RADOS_POOL_BLOCKS, PITHOS_RADOS_POOL_MAPS |
217 |
|
218 |
* Rewritten support for public URLs, with admin-selectable length |
219 |
|
220 |
* new settings: |
221 |
PITHOS_PUBLIC_URL_SECURITY, PITHOS_PUBLIC_URL_ALPHABET |
222 |
|
223 |
* Enable pithos backend to use external quotaholder component |
224 |
|
225 |
* new settings: |
226 |
PITHOS_USE_QUOTAHOLDER, PITHOS_QUOTAHOLDER_URL, PITHOS_QUOTAHOLDER_TOKEN, |
227 |
PITHOS_QUOTAHOLDER_POOLSIZE |
228 |
|
229 |
* Moderated version debiting mechanism |
230 |
|
231 |
* new setting: |
232 |
PITHOS_BACKEND_FREE_VERSIONING |
233 |
|
234 |
* Proxy Astakos user-visible services |
235 |
|
236 |
* new settings: |
237 |
PITHOS_PROXY_USER_SERVICES, PITHOS_USER_CATALOG_URL, |
238 |
PITHOS_USER_FEEDBACK_URL, PITHOS_USER_LOGIN_URL |
239 |
|
240 |
Tools |
241 |
----- |
242 |
|
243 |
* Extend snf-burnin to include testing of Pithos functionality |