2014-09-02 18:07:02 +05:30
|
|
|
namespace :gitlab do
|
2015-09-11 14:41:01 +05:30
|
|
|
desc "GitLab | Setup production application"
|
2018-03-17 18:26:18 +05:30
|
|
|
task setup: :gitlab_environment do
|
2018-10-15 14:42:47 +05:30
|
|
|
check_gitaly_connection
|
2014-09-02 18:07:02 +05:30
|
|
|
setup_db
|
|
|
|
end
|
|
|
|
|
2018-10-15 14:42:47 +05:30
|
|
|
def check_gitaly_connection
|
|
|
|
Gitlab.config.repositories.storages.each do |name, _details|
|
|
|
|
Gitlab::GitalyClient::ServerService.new(name).info
|
|
|
|
end
|
|
|
|
rescue GRPC::Unavailable => ex
|
|
|
|
puts "Failed to connect to Gitaly...".color(:red)
|
|
|
|
puts "Error: #{ex}"
|
|
|
|
exit 1
|
|
|
|
end
|
|
|
|
|
2014-09-02 18:07:02 +05:30
|
|
|
def setup_db
|
|
|
|
warn_user_is_not_gitlab
|
|
|
|
|
|
|
|
unless ENV['force'] == 'yes'
|
|
|
|
puts "This will create the necessary database tables and seed the database."
|
|
|
|
puts "You will lose any previous data stored in the database."
|
|
|
|
ask_to_continue
|
|
|
|
puts ""
|
|
|
|
end
|
|
|
|
|
2016-06-02 11:05:42 +05:30
|
|
|
Rake::Task["db:reset"].invoke
|
2014-09-02 18:07:02 +05:30
|
|
|
Rake::Task["add_limits_mysql"].invoke
|
2015-10-24 18:46:33 +05:30
|
|
|
Rake::Task["setup_postgresql"].invoke
|
2014-09-02 18:07:02 +05:30
|
|
|
Rake::Task["db:seed_fu"].invoke
|
|
|
|
rescue Gitlab::TaskAbortedByUserError
|
2016-06-16 23:09:34 +05:30
|
|
|
puts "Quitting...".color(:red)
|
2014-09-02 18:07:02 +05:30
|
|
|
exit 1
|
|
|
|
end
|
|
|
|
end
|