Skip to content
Snippets Groups Projects
  1. May 07, 2012
  2. Apr 26, 2012
  3. 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
  4. Mar 27, 2012
  5. Mar 26, 2012
  6. Mar 15, 2012
  7. Feb 27, 2012
  8. Feb 21, 2012
  9. Feb 10, 2012
  10. Jan 27, 2012
  11. Jan 26, 2012
  12. Jan 18, 2012
  13. Jan 16, 2012
  14. Jan 04, 2012
  15. Dec 22, 2011
  16. Dec 12, 2011
  17. Dec 09, 2011
  18. 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
  19. Dec 07, 2011
  20. 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
    • Iustin Pop's avatar
      A few updates to the confd design (2.1) · 530b64e6
      Iustin Pop authored
      
      While the 2.1 design is old and should be “immutable”, I can't find
      documentation about the confd protocol anywhere else, so let's correct
      the design doc.
      
      The patch is mostly style changes, plus a clarification on the ‘query’
      field of the request, which varies *a lot* per request type.
      
      Signed-off-by: default avatarIustin Pop <iustin@google.com>
      Reviewed-by: default avatarGuido Trotter <ultrotter@google.com>
      530b64e6
  21. Dec 02, 2011
  22. Nov 21, 2011
  23. Nov 17, 2011
  24. Nov 16, 2011
  25. Nov 15, 2011
  26. Nov 14, 2011
  27. Nov 04, 2011
  28. Nov 02, 2011
  29. Nov 01, 2011
Loading