summaryrefslogtreecommitdiff
path: root/lib/tasks/gitlab/check.rake
blob: b594f150c3bffbc5476f1b7a3fca580e2ebe517d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
namespace :gitlab do
  desc 'GitLab | Check the configuration of GitLab and its environment'
  task check: :gitlab_environment do
    SystemCheck::RakeTask::GitlabTask.run!
  end

  namespace :app do
    desc 'GitLab | Check the configuration of the GitLab Rails app'
    task check: :gitlab_environment do
      SystemCheck::RakeTask::AppTask.run!
    end
  end

  namespace :gitlab_shell do
    desc "GitLab | Check the configuration of GitLab Shell"
    task check: :gitlab_environment do
      SystemCheck::RakeTask::GitlabShellTask.run!
    end
  end

  namespace :gitaly do
    desc 'GitLab | Check the health of Gitaly'
    task check: :gitlab_environment do
      SystemCheck::RakeTask::GitalyTask.run!
    end
  end

  namespace :sidekiq do
    desc "GitLab | Check the configuration of Sidekiq"
    task check: :gitlab_environment do
      SystemCheck::RakeTask::SidekiqTask.run!
    end
  end

  namespace :incoming_email do
    desc "GitLab | Check the configuration of Reply by email"
    task check: :gitlab_environment do
      SystemCheck::RakeTask::IncomingEmailTask.run!
    end
  end

  namespace :ldap do
    task :check, [:limit] => :gitlab_environment do |_, args|
      ENV['LDAP_CHECK_LIMIT'] = args.limit if args.limit.present?

      SystemCheck::RakeTask::LdapTask.run!
    end
  end

  namespace :orphans do
    desc 'Gitlab | Check for orphaned namespaces and repositories'
    task check: :gitlab_environment do
      SystemCheck::RakeTask::OrphansTask.run!
    end

    desc 'GitLab | Check for orphaned namespaces in the repositories path'
    task check_namespaces: :gitlab_environment do
      SystemCheck::RakeTask::Orphans::NamespaceTask.run!
    end

    desc 'GitLab | Check for orphaned repositories in the repositories path'
    task check_repositories: :gitlab_environment do
      SystemCheck::RakeTask::Orphans::RepositoryTask.run!
    end
  end
end