Skip to content
Snippets Groups Projects
  1. Oct 10, 2012
  2. Oct 01, 2012
  3. Jul 27, 2012
  4. Jun 20, 2012
  5. Jun 18, 2012
  6. May 31, 2012
  7. May 30, 2012
  8. May 24, 2012
  9. May 23, 2012
  10. May 09, 2012
  11. May 07, 2012
  12. Apr 26, 2012
  13. Mar 28, 2012
    • Michael Hanselmann's avatar
      ganeti.initd: Add “status” action · 8e2ed2e8
      Michael Hanselmann authored
      
      Eric Rostetter sent a patch adding a “status” action, but unfortunately
      his code was apparently specific to Red Hat. I hope this implementation
      is more distribution-agnostic; after all “status_of_proc” is part of
      LSB. Example output:
      
      $ /etc/init.d/ganeti status
      ganeti-noded is not running ... failed!
      ganeti-masterd is running.
      ganeti-rapi is running.
      ganeti-confd is running.
      
      Signed-off-by: default avatarMichael Hanselmann <hansmi@google.com>
      Reviewed-by: default avatarIustin Pop <iustin@google.com>
      8e2ed2e8
    • Dimitris Aragiorgis's avatar
      Update IP pool management design doc · 2ac41278
      Dimitris Aragiorgis authored
      
      Update IP pool managenent design doc to be consistent
      with the implementation.
      
       * Add new NIC parameter: 'network'
         Can be None for backwards compatibility.
       * Introduce the term 'netparams'
         The NIC inherits netparams (mode, link) as its nicparams
         if assinged to a network. Netparams are defined during
         network connection to a nodegroup.
       * Introduce the term 'Conflicting IPs'
         Ensure IPs uniqueness inside nodegroups.
       * Update 'Hooks' section.
       * Update 'Hook variables' section
       * Update 'Userland interface' to reflect the implementation
      
      Signed-off-by: default avatarDimitris Aragiorgis <dimara@grnet.gr>
      Signed-off-by: default avatarIustin Pop <iustin@google.com>
      Reviewed-by: default avatarIustin Pop <iustin@google.com>
      2ac41278
  14. Mar 27, 2012
  15. Mar 26, 2012
  16. Mar 15, 2012
  17. Feb 27, 2012
  18. Feb 21, 2012
  19. Feb 10, 2012
  20. Jan 27, 2012
  21. Jan 26, 2012
  22. Jan 18, 2012
  23. Jan 16, 2012
  24. Jan 04, 2012
  25. Dec 22, 2011
  26. Dec 12, 2011
  27. Dec 09, 2011
  28. Dec 08, 2011
    • Bernardo Dal Seno's avatar
      manpages: Fix small errors in documentation · 1cdc9dbb
      Bernardo Dal Seno authored
      
      Mostly typos, except for the output of "gnt-instance migrate" in an
      example, which has been updated to the current version
      
      Signed-off-by: default avatarBernardo Dal Seno <bdalseno@google.com>
      Signed-off-by: default avatarIustin Pop <iustin@google.com>
      Reviewed-by: default avatarIustin Pop <iustin@google.com>
      1cdc9dbb
    • Iustin Pop's avatar
      Cleanup hlint errors · 3603605a
      Iustin Pop authored
      
      First, we update the recommended hlint version to what I used to get a
      clean output (1.8.15). Most of the changes are:
      
      - remove unneeded parentheses
      - some simplifications (intercalate " " → unwords, maybe … id →
        fromMaybe, etc.)
      - removal of some duplicate code (in previous patches)
      
      There are still some warnings which I didn't clean out but plain
      ignored:
      
      - 'Eta reduce' in some specific files, because the type inference
        specialises the function on the first call, and annotating the type
        properly would be too verbose
      - use of 'first', 'comparing', and 'on', since these don't seem to be
        widely or consistently used (outside ganeti/htools, I mean)
      - use of Control.Exception.catch, as we only care about I/O errors; at
        one point yes, we will need to transition to this new API
      - 'Reduce duplication', since hlint warns even for 3 duplicate lines,
        and abstracting that away seems overkill to me
      
      After this patch, make hlint is clean and doesn't exit with an error
      anymore; we could enable it automatically on 'make lint' if hlint is
      detected (future patch).
      
      Note that we explicitly skip the THH.hs file from checking because it
      seems that hlint doesn't parse correctly for now the splice notation.
      
      Signed-off-by: default avatarIustin Pop <iustin@google.com>
      Reviewed-by: default avatarAgata Murawska <agatamurawska@google.com>
      3603605a
  29. Dec 07, 2011
  30. Dec 06, 2011
    • Andrea Spadaccini's avatar
      Add DRBD barriers disk parameters · 8a69b3a8
      Andrea Spadaccini authored
      
      Add the disk-barriers and meta-barriers parameters described in the
      design doc.
      
      constants.py:
      * add the needed LD and DT-level parameters, use the defaults provided
        at ./configure time;
      * add constants representing which barriers should be disabled and the
        set of valid options.
      
      lib/bdev.py:
      * factor the barriers handling code to a class method, for testing
        purposes;
      * implement the more granular version checking logic;
      * use the LD level parameters;
      * add stricter check on DRBD version (8.0, 8.2 or 8.3), as we do not
        support 8.4 yet.
      
      lib/cmdlib.py:
      * translate DT level parameters to LD level ones.
      
      configure.ac, Makefile.am:
      * set both disk and meta barriers parameters depending on the value of
        --enable-drbd-barriers.
      
      test/ganeti.bdev_unittest.py:
      * unit tests for the code that sets DRBD barrier parameters depending on
        the version.
      
      doc/design-resource-model.rst:
      * reword the description of meta-barriers;
      * change all disk parameters names to use dashes instead of underscores.
      
      Signed-off-by: default avatarAndrea Spadaccini <spadaccio@google.com>
      Reviewed-by: default avatarIustin Pop <iustin@google.com>
      8a69b3a8
Loading