Welcome to mirror list, hosted at ThFree Co, Russian Federation.

pages.rake « gitlab « tasks « lib - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 100e480bd6621ee67ded7d96c4b3f880356d1b03 (plain)
1
2
3
4
5
6
7
8
9
namespace :gitlab do
  namespace :pages do
    desc 'Ping the pages admin API'
    task admin_ping: :gitlab_environment do
      Gitlab::PagesClient.ping
      puts "OK: gitlab-pages admin API is reachable"
    end
  end
end