Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
G
gitlab-ce
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
Kazuhiko Shiozaki
gitlab-ce
Commits
e1f6fa6f
Commit
e1f6fa6f
authored
Sep 29, 2014
by
Jacob Vosmaer
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Add backup upload support to the rake task
parent
0e8e9e5d
Changes
6
Show whitespace changes
Inline
Side-by-side
Showing
6 changed files
with
139 additions
and
4 deletions
+139
-4
CHANGELOG
CHANGELOG
+1
-0
Gemfile
Gemfile
+2
-2
config/gitlab.yml.example
config/gitlab.yml.example
+8
-0
config/initializers/1_settings.rb
config/initializers/1_settings.rb
+5
-0
doc/raketasks/backup_restore.md
doc/raketasks/backup_restore.md
+99
-0
lib/backup/manager.rb
lib/backup/manager.rb
+24
-2
No files found.
CHANGELOG
View file @
e1f6fa6f
...
...
@@ -5,6 +5,7 @@ v 7.4.0
- Refactor test coverage tools usage. Use SIMPLECOV=true to generate it locally
- Increase unicorn timeout to 60 seconds
- Sort search autocomplete projects by stars count so most popular go first
- Support for backup uploads to remote storage
v 7.3.1
- Fix ref parsing in Gitlab::GitAccess
...
...
Gemfile
View file @
e1f6fa6f
...
...
@@ -70,8 +70,8 @@ gem "carrierwave"
gem
'
dropzonejs-rails
'
# for aws storage
gem
"
fog
"
,
"~> 1.14"
,
group: :aws
gem
"
unf
"
,
group: :aws
gem
"
fog
"
,
"~> 1.14"
gem
"
unf
"
# Authorization
gem
"
six
"
...
...
config/gitlab.yml.example
View file @
e1f6fa6f
...
...
@@ -212,6 +212,14 @@ production: &base
backup:
path: "tmp/backups" # Relative paths are relative to Rails.root (default: tmp/backups/)
# keep_time: 604800 # default: 0 (forever) (in seconds)
# upload:
# # Fog storage connection settings, see http://fog.io/storage/ .
# connection:
# provider: AWS
# aws_access_key_id: AKIAKIAKI
# aws_secret_access_key: 'secret123'
# # The remote 'directory' to store your backups. For S3, this would be the bucket name.
# remote_directory: 'my.s3.bucket'
## GitLab Shell settings
gitlab_shell:
...
...
config/initializers/1_settings.rb
View file @
e1f6fa6f
...
...
@@ -129,6 +129,11 @@ Settings.gitlab_shell['ssh_path_prefix'] ||= Settings.send(:build_gitlab_shell_s
Settings
[
'backup'
]
||=
Settingslogic
.
new
({})
Settings
.
backup
[
'keep_time'
]
||=
0
Settings
.
backup
[
'path'
]
=
File
.
expand_path
(
Settings
.
backup
[
'path'
]
||
"tmp/backups/"
,
Rails
.
root
)
Settings
.
backup
[
'upload'
]
||=
Settingslogic
.
new
({
'remote_directory'
=>
nil
,
'connection'
=>
nil
})
# Convert upload connection settings to use symbol keys, to make Fog happy
if
Settings
.
backup
[
'upload'
][
'connection'
]
Settings
.
backup
[
'upload'
][
'connection'
]
=
Hash
[
Settings
.
backup
[
'upload'
][
'connection'
].
map
{
|
k
,
v
|
[
k
.
to_sym
,
v
]
}]
end
#
# Git
...
...
doc/raketasks/backup_restore.md
View file @
e1f6fa6f
...
...
@@ -46,6 +46,105 @@ Deleting tmp directories...[DONE]
Deleting old backups... [SKIPPING]
```
## Upload backups to remote (cloud) storage
Starting with GitLab 7.4 you can let the backup script upload the '.tar' file
it creates to cloud storage using
[
Fog
](
http://fog.io/storage/
)
. In the example
below we use Amazon S3 for storage, but Fog also lets you use other storage
backends; see http://fog.io/storage/ .
For omnibus packages:
```
ruby
gitlab_rails
[
'backup_upload_connection'
]
=
{
'provider'
=>
'AWS'
,
'aws_access_key_id'
=>
'AKIAKIAKI'
,
'aws_secret_access_key'
=>
'secret123'
}
gitlab_rails
[
'backup_upload_remote_directory'
]
=
'my.s3.bucket'
```
For installations from source:
```
yaml
backup
:
# snip
upload
:
# Fog storage connection settings, see http://fog.io/storage/ .
connection
:
provider
:
AWS
aws_access_key_id
:
AKIAKIAKI
aws_secret_access_key
:
'
secret123'
# The remote 'directory' to store your backups. For S3, this would be the bucket name.
remote_directory
:
'
my.s3.bucket'
```
If you are uploading your backups to S3 you will probably want to create a new
IAM user with restricted access rights. To give the upload user access only for
uploading backups create the following three profiles, replacing
`my.s3.bucket`
with the name of your bucket:
```
json
{
"Version"
:
"2014-09-29"
,
"Statement"
:
[
{
"Sid"
:
"Stmt1411994999"
,
"Effect"
:
"Allow"
,
"Action"
:
[
"s3:AbortMultipartUpload"
,
"s3:GetBucketAcl"
,
"s3:GetBucketLocation"
,
"s3:GetObject"
,
"s3:GetObjectAcl"
,
"s3:ListMultipartUploadParts"
,
"s3:PutObject"
,
"s3:PutObjectAcl"
],
"Resource"
:
[
"arn:aws:s3:::my.s3.bucket/*"
]
}
]
}
```
```
json
{
"Version"
:
"2014-09-29"
,
"Statement"
:
[
{
"Sid"
:
"Stmt1411995081"
,
"Effect"
:
"Allow"
,
"Action"
:
[
"s3:ListAllMyBuckets"
,
"s3:GetBucketLocation"
],
"Resource"
:
[
"*"
]
}
]
}
```
```
json
{
"Version"
:
"2014-09-29"
,
"Statement"
:
[
{
"Sid"
:
"Stmt1411995608"
,
"Effect"
:
"Allow"
,
"Action"
:
[
"s3:ListBucket"
],
"Resource"
:
[
"arn:aws:s3:::my.s3.bucket"
]
}
]
}
```
## Storing configuration files
Please be informed that a backup does not store your configuration files.
...
...
lib/backup/manager.rb
View file @
e1f6fa6f
...
...
@@ -9,6 +9,7 @@ module Backup
s
[
:backup_created_at
]
=
Time
.
now
s
[
:gitlab_version
]
=
Gitlab
::
VERSION
s
[
:tar_version
]
=
tar_version
tar_file
=
"
#{
s
[
:backup_created_at
].
to_i
}
_gitlab_backup.tar"
Dir
.
chdir
(
Gitlab
.
config
.
backup
.
path
)
...
...
@@ -17,8 +18,29 @@ module Backup
end
# create archive
print
"Creating backup archive:
#{
s
[
:backup_created_at
].
to_i
}
_gitlab_backup.tar ... "
if
Kernel
.
system
(
'tar'
,
'-cf'
,
"
#{
s
[
:backup_created_at
].
to_i
}
_gitlab_backup.tar"
,
*
BACKUP_CONTENTS
)
print
"Creating backup archive:
#{
tar_file
}
... "
if
Kernel
.
system
(
'tar'
,
'-cf'
,
tar_file
,
*
BACKUP_CONTENTS
)
puts
"done"
.
green
else
puts
"failed"
.
red
end
upload
(
tar_file
)
end
def
upload
(
tar_file
)
remote_directory
=
Gitlab
.
config
.
backup
.
upload
.
remote_directory
print
"Uploading backup archive to remote storage
#{
remote_directory
}
... "
connection_settings
=
Gitlab
.
config
.
backup
.
upload
.
connection
if
connection_settings
.
blank?
puts
"skipped"
.
yellow
return
end
connection
=
::
Fog
::
Storage
.
new
(
connection_settings
)
directory
=
connection
.
directories
.
get
(
remote_directory
)
if
directory
.
files
.
create
(
key:
tar_file
,
body:
File
.
open
(
tar_file
),
public:
false
)
puts
"done"
.
green
else
puts
"failed"
.
red
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment