1. 20 Oct, 2016 3 commits
    • iv's avatar
      gitlab: Sync sidekiq service to upstream · ab578df5
      iv authored
      Like for af0c5b11
      
          $ git diff 8-7-stable 8-8-stable --
                  files/gitlab-cookbooks/gitlab/templates/default/sv-sidekiq-run.erb
      
      is empty.
      ab578df5
    • iv's avatar
      gitlab: Sync gitlab-parameters.cfg to upstream · de35c7da
      iv authored
      Like for 61177775.
      
      I've manually reviewed
      
          git diff 8-7-stable 8-8-stable -- files/gitlab-config-template/gitlab.rb.template \
                                            files/gitlab-cookbooks/gitlab/attributes/default.rb
      
      on omnibus-gitlab repository.
      
      There are only changes on postgresql and registry options, which are not relevant for us.
      de35c7da
    • iv's avatar
      gitlab: Slapos'ify gitlab config updates · c7e69fac
      iv authored
      Do not use container_registry and registry_* options
      c7e69fac
  2. 13 Oct, 2016 2 commits
  3. 12 Oct, 2016 1 commit
  4. 11 Oct, 2016 3 commits
  5. 10 Oct, 2016 3 commits
  6. 07 Oct, 2016 1 commit
  7. 05 Oct, 2016 2 commits
  8. 03 Oct, 2016 2 commits
  9. 01 Oct, 2016 3 commits
  10. 30 Sep, 2016 6 commits
  11. 29 Sep, 2016 9 commits
  12. 28 Sep, 2016 5 commits
    • Kirill Smelkov's avatar
      wendelin: v↑ wendelin.core (v0.8) · 0027ac40
      Kirill Smelkov authored
      /reviewed-by: TrustMe
      0027ac40
    • Alain Takoudjou's avatar
      slapos softwaretype: fix parse error on '+ =' when using buildout 2 · e473ed69
      Alain Takoudjou authored
      Add a class SlapConfigParser which overrite ConfigParser.write method to fix parse problem when
      configuration like:
      [section]
      foo += bar
      
      is included in buildout file. softwaretype recipe will generate
      buildout file with foo + = bar because ConfigParser doesn't reconize +=
      delimiter and read key as "foo +", value as "bar".
      Then ConfigParser.write method generate
      
      [section]
      foo + = bar
      ...
      
      This is invalid with buildout version 2
      
      /reviewed-on !100
      e473ed69
    • Douglas's avatar
      wendelin: custom test runner to load our own libstdc++ · 82df050e
      Douglas authored
      @Tyagov, please review.
      
      Now the test runners use the LD_PRELOAD environment variable to load
      the correct libstdc++ built by slapos and restart themselves.
      
      The restart is necessary because LD_PRELOAD is only taken into account
      at the time the process is started. Changing this environment variable
      in runtime has no effects.
      
      Tests results are available at Nexedi's ERP5 and are 100% ok: https://nexedi.erp5.net/test_result_module/20160927-3FA05624.
      
      /reviewed-on !99
      82df050e
    • Vincent Pelletier's avatar
      erp5: Improve replication setup support. · 5ff0a4e0
      Vincent Pelletier authored
      Document how to setup replication.
      Add support for no-zope ERP5 instance, so it is possible to setup a
      replicating, full-featured ERP5 Cluster instance tree without providing
      service until it needs to take over its upstream, or to become
      otherwise independent.
      5ff0a4e0
    • Vincent Pelletier's avatar
      publish: Access "-extends"-referenced sections during __init__ · a50c91ef
      Vincent Pelletier authored
      Buildout expects all needed sections to have been accessed during the
      sectoin initialisation pass. It does not like having them accessed during
      the "install" pass, and emits a very cryptic error:
        While:
          Installing publish.
        Error: Missing option: publish-early:__buildout_signature__
      a50c91ef