Skip to content
Snippets Groups Projects
  1. Apr 30, 2013
  2. Apr 22, 2013
  3. Apr 05, 2013
  4. Apr 02, 2013
  5. Mar 21, 2013
  6. Mar 13, 2013
  7. Feb 25, 2013
  8. Feb 20, 2013
    • Iustin Pop's avatar
      Switch the curl bindings from optional to required · 1ca709c1
      Iustin Pop authored
      
      Currently, we support curl being optional via some sporting exercises:
      ifdefs in the code, data types that represent 'Curl is disabled'
      state, etc. However, with the future work on RPC, we would have to
      even make the dependencies list conditional on it, etc. This is too
      much work, when the curl library is included even in stable
      distributions.
      
      This patch changes curl from option to required, the same as the other
      base libraries.
      
      Signed-off-by: default avatarIustin Pop <iustin@google.com>
      Reviewed-by: default avatarMichele Tartara <mtartara@google.com>
      1ca709c1
  9. Feb 06, 2013
  10. Jan 18, 2013
  11. Jan 15, 2013
    • Michael Hanselmann's avatar
      Add version check for Sphinx · 96b28307
      Michael Hanselmann authored
      
      Sphinx 1.0 and above can check version by setting “needs_sphinx” in the
      configuration.
      
      Signed-off-by: default avatarMichael Hanselmann <hansmi@google.com>
      Reviewed-by: default avatarGuido Trotter <ultrotter@google.com>
      96b28307
    • Michael Hanselmann's avatar
      Option to include man pages in documentation · 41806ef4
      Michael Hanselmann authored
      
      Before this patch, HTML versions of man pages (man/*.rst) were already
      built. However, since they are separate from the normal documentation,
      their content is not indexed for Sphinx' search functionality.
      Additionally it would simply be nice to have everything in one place.
      
      To this end a new configure-time option is added to enable the inclusion
      of man pages into the documentation. A dedicated option is necessary to
      still be able to provide a static documentation build in the tarball
      (not including man pages) as man pages contain build-specific paths and
      values. The documentation with man pages is written to the directory
      “doc/man-html”.
      
      A future patch will extend Sphinx to link occurences of “:manpage:`…`”
      to these man pages.
      
      Signed-off-by: default avatarMichael Hanselmann <hansmi@google.com>
      Reviewed-by: default avatarGuido Trotter <ultrotter@google.com>
      41806ef4
  12. Dec 27, 2012
  13. Dec 20, 2012
    • Constantinos Venetsanopoulos's avatar
      Implement the External Storage Interface · 376631d1
      Constantinos Venetsanopoulos authored
      
      With this commit we introduce the External Storage Interface
      to Ganeti, abbreviated: ExtStorage Interface.
      
      The ExtStorage Interface provides Ganeti with the ability to interact
      with externally connected shared storage pools, visible by all
      VM-capable nodes. This means that Ganeti is able to handle VM disks
      that reside inside a NAS/SAN or any distributed block storage provider.
      
      The ExtStorage Interface provides a clear API, heavily inspired by the
      gnt-os-interface API, that can be used by storage vendors or sysadmins
      to write simple ExtStorage Providers (correlated to gnt-os-interface's
      OS Definitions). Those Providers will glue externally attached shared
      storage with Ganeti, without the need of preprovisioned block devices
      on Ganeti VM-capable nodes as confined be the current `blockdev' disk
      template.
      
      To do so, we implement a new disk template called `ext' (of type
      DTS_EXT_MIRROR) that passes control to externally provided scripts
      (the ExtStorage Provider) for the template's basic functions:
      
       create / attach / detach / remove / grow
      
      The scripts reside under ES_SEARCH_PATH (correlated to OS_SEARCH_PATH)
      and only one ExtStorage Provider is supported called `ext'.
      
      The disk's logical id is the tuple ('ext', UUID.ext.diskX), where UUID
      is generated as in disk template `plain' and X is the disk's index.
      
      Signed-off-by: default avatarConstantinos Venetsanopoulos <cven@grnet.gr>
      Signed-off-by: default avatarIustin Pop <iustin@google.com>
      [iustin@google.com: small simplification in bdev code, pylint fixes]
      Reviewed-by: default avatarIustin Pop <iustin@google.com>
      376631d1
    • Iustin Pop's avatar
      Final update of NEWS file for 2.6.2 and version bump · efe2137a
      Iustin Pop authored
      
      I'm already setting this to a release date of tomorrow, since QA on
      the 2.6 branch has been clean.
      
      Signed-off-by: default avatarIustin Pop <iustin@google.com>
      Reviewed-by: default avatarMichael Hanselmann <hansmi@google.com>
      v2.6.2
      efe2137a
  14. Dec 17, 2012
  15. Dec 12, 2012
  16. Dec 05, 2012
  17. Nov 21, 2012
  18. Nov 19, 2012
  19. Nov 16, 2012
  20. Nov 13, 2012
  21. Oct 26, 2012
  22. Oct 22, 2012
  23. Oct 18, 2012
  24. Oct 12, 2012
  25. Oct 10, 2012
    • Iustin Pop's avatar
      Improve Haskell configure options and detection · 21a5e56c
      Iustin Pop authored
      
      This patch cleans up  the Haskell library detection and defaults.
      
      First, it makes the base compiler/libraries required, per the email discussion.
      
      It then adds two new small autoconf macros, on to check for a required
      Haskell library and one to do custom action based on test results. We
      use these macros to cleanup and simplify a bit the module detection:
      
      - rapi, confd, and split query are auto detected and enabled if _all_
        required libraries are present
      - unittests are enabled if _all_ required libraries are present
      
      The patch also updates the documentation regarding required libraries.
      
      After this patch, base Ganeti fully buildable on Debian Squeeze/Ubuntu
      Lucid.
      
      Signed-off-by: default avatarIustin Pop <iustin@google.com>
      Reviewed-by: default avatarGuido Trotter <ultrotter@google.com>
      21a5e56c
  26. Oct 09, 2012
    • Iustin Pop's avatar
      Try to auto-enable htools-rapi and split query · 55837756
      Iustin Pop authored
      
      We try to automatically enable the htools-rapi and split query (if
      confd and htools-rapi are enabled) options. This is our intended
      default configuration, and allows easier test of the new code
      path. Further cleanups for checking whether confd can be enabled will
      come later.
      
      The move block is due to the fact that we first have to check for
      htools-rapi, and only then we can auto-enable the feature.
      
      Signed-off-by: default avatarIustin Pop <iustin@google.com>
      Reviewed-by: default avatarGuido Trotter <ultrotter@google.com>
      55837756
  27. Oct 02, 2012
  28. Sep 28, 2012
  29. Sep 18, 2012
  30. Aug 28, 2012
  31. Jul 27, 2012
  32. Jul 24, 2012
  33. Jul 19, 2012
  34. Jul 13, 2012
  35. Jul 03, 2012
  36. Jun 25, 2012
Loading