Skip to content
Snippets Groups Projects
  1. Nov 24, 2008
    • Guido Trotter's avatar
      IAllocator: subtract down instances from free mem · 18640d69
      Guido Trotter authored
      Currently free_memory just reports the amount of free ram, as seen by the
      hypervisor. We adjust this amount by subtracting the memory for any instance
      which is down, and the difference for any instance which is configured to have
      more memory than the amount it's currently running at.
      
      Reviewed-by: iustinp
      18640d69
    • Guido Trotter's avatar
      Correct GetAllInstancesInfo rtype · 955db481
      Guido Trotter authored
      GetAllInstancesInfo, in the backend, returns just a dict, not a dict of dicts.
      
      Reviewed-by: iustinp
      955db481
    • Guido Trotter's avatar
      IAllocator: use the right hypervisor · 8cc7e742
      Guido Trotter authored
      Since the hypervisor is instance dependent we'll get one on instance creation,
      and use the one in the instance config on relocation.
      
      Reviewed-by: iustinp
      8cc7e742
    • Guido Trotter's avatar
      IAllocator: fill i_list in a more proper way · b57e9819
      Guido Trotter authored
      - reuse the previously called cluster_info, rather than calling it again
      - get all the instances from the config atomically, to prevent race conditions
      - use a list comprehension, for simplicity
      
      Reviewed-by: iustinp
      b57e9819
    • Guido Trotter's avatar
      Parallelize instance operations on the same node · 90a7547a
      Guido Trotter authored
      With static minors we don't have a race condition anymore when
      starting/stopping/rebooting/reinstalling more than one instance on the same
      node, so we'll drop node locking altogether.
      
      Reviewed-by: iustinp
      90a7547a
    • Guido Trotter's avatar
      Convert iallocator to the new _ComputeDiskSize · dafc7302
      Guido Trotter authored
      _ComputeDiskSize's API was changed for multidisk support in r2010, but
      iallocator's call to it were not fixed. Converting them now.
      
      Reviewed-by: iustinp
      dafc7302
  2. Nov 23, 2008
    • Iustin Pop's avatar
      Documentation updates for cmdlib.py · e4376078
      Iustin Pop authored
      This makes cmdlib.py not throw epydoc errors anymore.
      
      Reviewed-by: ultrotter
      e4376078
    • Iustin Pop's avatar
      Slight change to the apidoc build · 975e07c6
      Iustin Pop authored
      Currently the temporary directory used for modules is under the current
      directory; this patch changes it so a temp directory is used; so we
      could build the apidocs with a R/O filesystem.
      
      Reviewed-by: ultrotter
      975e07c6
    • Iustin Pop's avatar
      Only update ssconf on cluster serial change · 0779e3aa
      Iustin Pop authored
      There is no need to update ssconf if the cluster serial number has not
      changed.
      
      Reviewed-by: ultrotter
      0779e3aa
    • Iustin Pop's avatar
      Enable auto-unit formatting in script output · 9fbfbb7b
      Iustin Pop authored
      This patch enables by default the old 'human-readable' option, but in a
      slightly different model.
      
      The option is now called "units" and takes either:
       - 'h' for automatic formatting
       - 'm', 'g' or 't' for mebi/gibi/tebibytes
      
      If 'h' is used, we add a unit suffix, otherwise nothing is added so that
      parsing is easy.
      
      The default value of this unit is:
        - 'h' if a separator is not passed
        - 'm' if a separator is passed
      
      Reviewed-by: ultrotter
      9fbfbb7b
    • Iustin Pop's avatar
      Improvements to CLI output · 23b8c8d6
      Iustin Pop authored
      This patch adds nicer formatting for some gnt-instance list operations.
      
      Reviewed-by: ultrotter
      23b8c8d6
  3. Nov 21, 2008
  4. Nov 20, 2008
    • Michael Hanselmann's avatar
      ganeti.ssconf: Add function to write ssconf files · 0c223ea9
      Michael Hanselmann authored
      This function will be used to write ssconf files from the node daemon.
      By creating a lock file, we synchronize different child processes of
      ganeti-noded to not overwrite each other's changes. Also, external
      processes could use this lock to make sure they don't read ssconf
      files while changes are going on.
      
      The socket module is not used (anymore) in ganeti.ssconf, removing it.
      
      Reviewed-by: iustinp
      0c223ea9
    • Iustin Pop's avatar
      Convert replace-disks (same nodes) to multi-disk · 54155f52
      Iustin Pop authored
      This patch changes the drbd8 replace disk only (no secondary change) to
      work in with multi-disk. This mode of replaces works correctly with
      replacing only a subset of disks.
      
      Reviewed-by: imsnah
      54155f52
    • Iustin Pop's avatar
      Initial multi-disk/multi-nic support · 08db7c5c
      Iustin Pop authored
      This patch adds support for mult-disk/multi-nic in:
        - instance add
        - burnin
      
      The start/stop/failover/cluster verify work as expected. Replace disk
      and grow disk are TODO.
      
      There's also a change gnt-job to allow dictionaries to be listed in
      gnt-job info.
      
      Reviewed-by: imsnah
      08db7c5c
    • Iustin Pop's avatar
      Add more disk/nic listing options in gnt-instance · 41a776da
      Iustin Pop authored
      This adds some more listing cases (useful for scripting/rapi):
        - disk.sizes for a list of all sizes
        - nic.(ips|macs|bridges)
      
      Reviewed-by: imsnah
      41a776da
    • Iustin Pop's avatar
      Change Xen hypervisor to not use iv_name · 2864f2d9
      Iustin Pop authored
      Currently the iv_name is very linux-specific, and will break with the
      multi-disk changes.
      
      The patch changes this to generate sdX names based on the disk index in
      the disks structure, instead of relying on the iv_name.
      
      Reviewed-by: imsnah
      2864f2d9
  5. Nov 19, 2008
  6. Nov 18, 2008
    • Iustin Pop's avatar
      Skip another testWaitingXblocksY · a143be68
      Iustin Pop authored
      The waiting sharer blocks exclusive is another not-possible to test
      right now.
      
      Sorry for missing it the first time; there are no other testWaiting...
      tests.
      
      Reviewed-by: ultrotter
      a143be68
    • Iustin Pop's avatar
      Allow querying of variable number of parameters · 71c1af58
      Iustin Pop authored
      This patch adds support for querying in gnt-instance list of:
        - disk.count
        - nic.count
        - disk.size/$N
        - nic.(ip|mac|bridge)/$N
      
      The patch also disables the exception raised when the header description
      is missing, that should be fixed in the future (together with better
      handling of variable numeric fields).
      
      Reviewed-by: imsnah
      71c1af58
    • Iustin Pop's avatar
      Convert cmdlib.py to _FieldSet · 31bf511f
      Iustin Pop authored
      This patch converts the current usage of _CheckOutputFields to the
      FieldSet class, but it doesn't start to use its variable matching
      features.
      
      Reviewed-by: ultrotter
      31bf511f
    • Iustin Pop's avatar
      Add a FieldSet class for variable parameter sets · 6de7c41d
      Iustin Pop authored
      This patch adds a _FieldSet class that can be used for the new variable
      parameter sets: e.g. the sda_size will change to disk/0.size (or
      similar) and we need to both check validity and extract the index of the
      parameter easily.
      
      The patch also sorts the unittest list in Makefile.am.
      
      Reviewed-by: ultrotter
      6de7c41d
    • Iustin Pop's avatar
      Skip the waitingExclusiveBlockSharer test · e6416152
      Iustin Pop authored
      Until we have a way to properly test this, we'll skip the test.
      
      Reviewed-by: imsnah
      e6416152
Loading