BigW Consortium Gitlab

  1. 09 Jan, 2017 1 commit
  2. 07 Dec, 2016 1 commit
  3. 30 Nov, 2016 1 commit
  4. 27 Oct, 2016 1 commit
  5. 30 Aug, 2016 1 commit
  6. 11 Aug, 2016 1 commit
  7. 25 Jul, 2016 1 commit
    • Fix backup restore · c6ff77d4
      Stan Hu authored
      Set permissions of backup dir to g+s
      
      Closes #20188
  8. 30 Jun, 2016 1 commit
  9. 10 Jun, 2016 1 commit
  10. 03 Jun, 2016 3 commits
  11. 31 May, 2016 1 commit
  12. 25 May, 2016 1 commit
  13. 23 May, 2016 1 commit
  14. 16 May, 2016 1 commit
  15. 08 Feb, 2016 1 commit
  16. 19 Nov, 2015 1 commit
  17. 18 Nov, 2015 2 commits
  18. 10 Nov, 2015 1 commit
    • Implement Build Artifacts · d0e3e823
      Kamil Trzcinski authored
      - Offloads uploading to GitLab Workhorse
      - Use /authorize request for fast uploading
      - Added backup recipes for artifacts
      - Support download acceleration using X-Sendfile
  19. 03 Nov, 2015 1 commit
  20. 02 Nov, 2015 1 commit
  21. 16 Oct, 2015 1 commit
  22. 06 Oct, 2015 6 commits
  23. 25 Sep, 2015 1 commit
    • Add support for AWS S3 Server-Side Encryption support · 253d2320
      Paul Beattie authored
      This adds support for AWS S3 SSE with S3 managed keys, this means the
      data is encrypted at rest and the encryption is handled transparently to
      the end user as well as in the AWS Console. This is optional and not
      required to make S3 uploads work.
  24. 18 Sep, 2015 1 commit
  25. 15 Sep, 2015 3 commits
  26. 21 Aug, 2015 1 commit
  27. 12 Aug, 2015 1 commit
  28. 30 Jul, 2015 1 commit
  29. 29 Jul, 2015 1 commit
  30. 21 Jul, 2015 1 commit
    • Don't stop if database.sql.gz already exists · 346b0749
      Jacob Vosmaer authored
      The existing behavior of the backups is to overwrite whatever data
      was still there in the scratch directories. This broke when we added
      a 'gzip' step because 'gzip database.sql' will fail if 'database.sql.gz'
      already exists. Doing 'rm -f database.sql.gz' before the 'gzip'
      avoids this failure.