1. 15 Dec, 2016 1 commit
  2. 20 Oct, 2016 5 commits
    • iv's avatar
      gitlab: Update software to gitlab 8.8 · 0abde9c5
      iv authored
      Update GitLab software to
      
          - gitlab-ce 8.8.9 + NXD patches
      
          - gitlab-shell stays at 2.7.2 + 1 patch to remove unneeded hooks.old in *.git
            because gitlab-ce 8.7.x sticks to this version (i.e. no shell upgrade for
            gitlab 8.7 -> 8.8)
      
          - gitlab-workhorse stays at 0.7.1 + NXD patches because gitlab-ce 8.8.x
            sticks to this version (i.e. no workhorse upgrade for gitlab 8.7 -> 8.8)
      
      This only updates software and begins SR update to 8.8 - for now gitlab
      instance starts using gitlab-ce appropriate version.
      0abde9c5
    • iv's avatar
      gitlab: fix promise failure due to use of curl version 7.50 · eb2b7608
      iv authored
      it is no longer possible to use http:/ as curl now expect a hostname to be
      given, see curl issue https://github.com/curl/curl/issues/936
      eb2b7608
    • 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
  3. 13 Oct, 2016 2 commits
  4. 12 Oct, 2016 1 commit
  5. 11 Oct, 2016 3 commits
  6. 10 Oct, 2016 3 commits
  7. 07 Oct, 2016 1 commit
  8. 05 Oct, 2016 2 commits
  9. 03 Oct, 2016 2 commits
  10. 01 Oct, 2016 3 commits
  11. 30 Sep, 2016 6 commits
  12. 29 Sep, 2016 9 commits
  13. 28 Sep, 2016 2 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