- Feb 26, 2009
-
-
Iustin Pop authored
This is a not-complete bash completion file for ganeti commands (gnt-*) and the burnin tool. It is based on previous work by Minghua Ye <yeminghua@google.com> for Ganeti 1.1, which wasn't used because the lack of ssconf keys (which allow easy inspection by the shell of the existing nodes and instances) made it too slow. The file works as expected, however I realized that our custom (like comma-separated, or a=b:c,e:f) options are not very nice for auto-completion. There are a few FIXMEs in the source for that. The file is not installed at make install time, but it should be put in the correct place by packages. Reviewed-by: imsnah
-
Michael Hanselmann authored
Reviewed-by: iustinp
-
- Feb 25, 2009
-
-
Iustin Pop authored
The current implementation of the combining of the instance lists will only do this for instances whose all four-fields match in both hypervisors; however, this is broken for the dynamic fields (state, times) which can change between the invocations of the two different hypervisors if the instance is busy. The patch checks only the memory and VCPUs, and makes mixed clusters work even with 100% CPU instances. Reviewed-by: imsnah
-
Iustin Pop authored
xen-hvm doesn't have KERNEL_ARGS, and I just changed blindly all old extra_args to HV_KERNEL_ARGS. This makes xen-hvm work again. Reviewed-by: imsnah
-
Iustin Pop authored
Since we are quite close to final RPC and hooks APIs, we update the hooks and protocol_version constants. Reviewed-by: imsnah
-
Iustin Pop authored
This also updates the hooks document to 2.0. Reviewed-by: ultrotter
-
Iustin Pop authored
While reviewing the hooks document, I realised we are not correctly exporting the instance properties. This patch fixes: - export the disk and disk template in all LUs, not only (hardcoded) in the instance create - removes the instance create INSTANCE_ prefix on some non-instance variables (those are LU-related, not instance-related) - adds a couple of more variables to other LUs The hook document will be updated in a separate patch. Reviewed-by: ultrotter
-
- Feb 24, 2009
-
-
Iustin Pop authored
This patch removes the extra_args parameter and instead switches the instance to the HV_KERNEL_ARGS hypervisor option. This is a big change, but it's a needed cleanup, this extra parameter on all RPC calls is not generic and we also need to have a persistent value here. Reviewed-by: imsnah
-
Iustin Pop authored
Instead of “instance.hvparams”, we use a shorter “hvp” name to make readability better. Reviewed-by: imsnah
-
Iustin Pop authored
This patch adds a new hypervisor parameter for the hypervisors that can actually start and instance with external kernels. Reviewed-by: imsnah
-
Iustin Pop authored
This is a no-contents change, this doc will need update to conform to 2.0 message contents (and also the code will need increase to version 2 of the iallocator protocol). Reviewed-by: imsnah
-
Iustin Pop authored
The RST format holds a little bit less information, as all the <file class="directory"> and <userinput> tags are gone, however we're not really losing important context here. And it's way easier to read and update. Reviewed-by: imsnah
-
Guido Trotter authored
Having hvattr descriptions is only confusing for the user, because even if they explain better what an attribute is about, they don't help in deciding what keyword should be used to actually set it. If in the future we want descriptions they should probably live in constants.py, and be displayed together with the key, rather than instead of it. This patch also changes the handling of the vnc console connection description, making compatible work with both kvm and xen-hvm. Reviewed-by: iustinp
-
Iustin Pop authored
This simply makes LUQueryInstanceData return the same information as for a static query when one or both of the nodes are down. Reviewed-by: imsnah
-
- Feb 20, 2009
-
-
Guido Trotter authored
This was forgotten when drained nodes were added. Reviewed-by: iustinp
-
Iustin Pop authored
This would help in generating online-viewable docs, which could link to the man pages. Reviewed-by: imsnah
-
- Feb 19, 2009
-
-
Iustin Pop authored
Note that the RAPI change is in a docstring (i.e. example), not in code. Reviewed-by: ultrotter
-
- Feb 17, 2009
-
-
Iustin Pop authored
This patch also logs the output of the xm commands in case of failures; some corner cases were forgotten in the last redo. Reviewed-by: imsnah
-
Iustin Pop authored
This is not a real update, just a quick pass changing the obvious parts. Reviewed-by: imsnah
-
- Feb 16, 2009
-
-
Iustin Pop authored
This patch adds support for optionally doing the rename burnin test, and adds an example to the sample QA file. To disable, either remove or specify an empty rename target. Reviewed-by: imsnah
-
Iustin Pop authored
There are two issues fixed in this patch: - first, the recent RPC changes caused loss of data in hard reboot type; we weren't reporting any results from the stop/start instance calls; - second, in soft or hard reboots, we didn't initialized the disk physical ID; based on the last state of the instance's disks, this can create a failure in identifying the disks After this patch, burnin works again with reboot, and reports errors correctly. Reviewed-by: imsnah
-
Iustin Pop authored
In rename, we must stop different names in the first and second phases, so we create two different opcodes for this purpose (instead of using the same one twice, which doesn't work). Reviewed-by: imsnah
-
Iustin Pop authored
Reviewed-by: imsnah
-
Iustin Pop authored
If /proc/drbd can't be opened, this raises an IOError, but all the error-handling behaviour in backend treats only BlockDeviceErrors. This creates a plain failure in cluster verify and in other RPC calls. This patch simply converts EnvironmentErrors into BlockDeviceErrors, and also changes the RPC result for NV_DRBDLIST and its handling to be able to show the error. The other RPC calls work by default now, due the existing error handling. Reviewed-by: ultrotter
-
Guido Trotter authored
Remove it from the suggested development ./configure line Reviewed-by: iustinp
-
Guido Trotter authored
As discussed with 2.0 msdos partition style should be the default in the instance OS, so we're changing the default instance params accordingly. A followup patch will update the debootstrap os. Reviewed-by: iustinp
-
Iustin Pop authored
The recent change (commit 2151) to the watcher to make it handle offline nodes also saves the offline attribute to the state file, but this is not needed and also breaks the checking of the boot ID. This patch simply removes it, restoring the correct behaviour. Reviewed-by: imsnah
-
Iustin Pop authored
This patch adds auto-archiving of jobs older than 6 hours to the watcher. Reviewed-by: imsnah
-
- Feb 13, 2009
-
-
Iustin Pop authored
This patch fixes the version and does some update to the RAPI resources docs. Reviewed-by: imsnah
-
Iustin Pop authored
This patch fixes many small issues related to write functions: - update documentations w.r.t. how to add users - update the instance add function for latest API - add instance delete - fix addition of tags - update some error messages Reviewed-by: imsnah
-
Iustin Pop authored
This patch modifies the fake hypervisor to substract the memory “used” by “running” instances from the free memory, so the actual node information changes based on the running instances. Also some style changes and fixes are added. Reviewed-by: ultrotter
-
Iustin Pop authored
This patch adds back to the instance creation command (gnt-instace add, gnt-backup import) the ‘-s’ short form option for specifying a single-disk instance. Also a small bug in gnt-backup import is fixed. Reviewed-by: ultrotter
-
Guido Trotter authored
Currently we export the old instance "as is" and any nic changes get lost, so hooks won't know of a different ip, bridge, or mac address. This patch fixes it by putting the nics in the override dict, if any changes are done. Reviewed-by: iustinp
-
Guido Trotter authored
The cli FIXME is not something broken, but rather some better handling feature we'd rather have, and the two backend FIXME are done (disks have their read only parameter set, and the error is raised and thus reaches the master). Reviewed-by: iustinp
-
Iustin Pop authored
This patch changes the format of the HTTP error messages from text/html, which is hard to parse from RAPI clients, to JSON which can be automatically parsed. The error message is an object, which contains always three keys: - code, an integer with the error code - message, a short description - explain, holding (if available) a description of the error In order to implement this, there is a bit of change to the http server and executor classes. I've tested and the error handling still works (but less optimal, no error message) in case the error formatting itself raises an exception. Reviewed-by: imsnah
-
Iustin Pop authored
This changes the RAPI error codes for luxi errors; a timeout error is now reported properly as 504, while any other luxi error is reported as 502. It would be good to convert even more errors into proper return codes in the future. Reviewed-by: imsnah
-
Iustin Pop authored
This patch displays a nicer error message compared to the default stacktrace. Reviewed-by: imsnah
-
- Feb 12, 2009
-
-
Iustin Pop authored
Currently we only log "Error in opcode ...", but we don't log the error itself. This is not good for debugging. Reviewed-by: ultrotter
-
Guido Trotter authored
CheckArguments: Use constants.VALUE_NONE rather than hardcoding the string "none" If we're adding a nic fill the nic_dict with default values Check if the mac is syntactically valid, if we have one Don't allow the mac to be 'auto' when modifying a nic CheckPrereq: Check that bridge and mac if present in the dict are not None (before this wasn't handled at all) Generate the nic mac address here if demanded Exec: Do not generate nics and macs Reviewed-by: iustin
-
Guido Trotter authored
There is a race condition in CreateInstance, since the mac address is generated early and only added to the config (and thus really assured to be unique) only at this point. Since it's possible that another instance gets the same mac address in the meantime with this check we'll make the instance creation fail before modifying the config data and thus having a wrong in-memory config (which is bad!!). Note that the same race condition exists, for example, in SetInstanceParams, and should be fully addressed by a way to revert config changes if writing them fails! Reviewed-by: iustin
-