Skip to content
This repository has been archived by the owner on Aug 29, 2018. It is now read-only.

Commit

Permalink
Thread together new imports for Jenkins repo sync
Browse files Browse the repository at this point in the history
Signed-off-by: Steve Kuznetsov <skuznets@redhat.com>
  • Loading branch information
stevekuznetsov committed May 30, 2017
1 parent c3f8c87 commit e16e029
Showing 1 changed file with 8 additions and 3 deletions.
11 changes: 8 additions & 3 deletions lib/vagrant-openshift/plugin.rb
Original file line number Diff line number Diff line change
Expand Up @@ -223,20 +223,25 @@ class Plugin < Vagrant.plugin("2")
end

command "sync-origin-aggregated-logging" do
require_relative "command/repo_sync"
require_relative "command/repo_sync_origin_aggregated_logging"
Commands::RepoSyncOriginAggregatedLogging
end

command "sync-origin-metrics" do
require_relative "command/repo_sync"
require_relative "command/repo_sync_origin_metrics"
Commands::RepoSyncOriginMetrics
end

command "sync-customer-diagnostics" do
require_relative "command/repo_sync"
require_relative "command/repo_sync_customer_diagnostics"
Commands::RepoSyncCustomerDiagnostics
end

command "sync-jenkins" do
require_relative "command/repo_sync_jenkins"
Commands::RepoSyncJenkins
end

provisioner("configure-docker-client-windows") do
require_relative "provisioner/configure_docker_client_windows"
Provisioner::ConfigureDockerClientWindows
Expand Down

0 comments on commit e16e029

Please sign in to comment.