vagrant-openshift 1.0.20 → 2.0.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (51) hide show
  1. checksums.yaml +4 -4
  2. data/.gitignore +1 -0
  3. data/README.asciidoc +30 -17
  4. data/lib/vagrant-openshift/action.rb +66 -41
  5. data/lib/vagrant-openshift/action/bootstrap_openshift.rb +34 -0
  6. data/lib/vagrant-openshift/action/{build_openshift3.rb → build_openshift.rb} +1 -1
  7. data/lib/vagrant-openshift/action/{build_openshift3_base_images.rb → build_openshift_base_images.rb} +1 -1
  8. data/lib/vagrant-openshift/action/clone_upstream_repositories.rb +3 -2
  9. data/lib/vagrant-openshift/action/create_ami.rb +19 -3
  10. data/lib/vagrant-openshift/action/create_sample_project.rb +39 -0
  11. data/lib/vagrant-openshift/action/create_yum_repositories.rb +1 -1
  12. data/lib/vagrant-openshift/action/{download_artifacts_openshift3.rb → download_artifacts_openshift.rb} +1 -1
  13. data/lib/vagrant-openshift/action/generate_template.rb +12 -5
  14. data/lib/vagrant-openshift/action/install_docker_registry.rb +47 -0
  15. data/lib/vagrant-openshift/action/{install_openshift3.rb → install_openshift.rb} +7 -5
  16. data/lib/vagrant-openshift/action/{install_openshift3_asset_dependencies.rb → install_openshift_asset_dependencies.rb} +1 -1
  17. data/lib/vagrant-openshift/action/{install_openshift3_base_dependencies.rb → install_openshift_base_dependencies.rb} +2 -2
  18. data/lib/vagrant-openshift/action/{install_openshift3_images.rb → install_openshift_images.rb} +1 -1
  19. data/lib/vagrant-openshift/action/{install_openshift3_rhel7.rb → install_openshift_rhel7.rb} +1 -1
  20. data/lib/vagrant-openshift/action/{install_openshift3_router.rb → install_openshift_router.rb} +3 -3
  21. data/lib/vagrant-openshift/action/{local_openshift3_checkout.rb → local_openshift_checkout.rb} +2 -2
  22. data/lib/vagrant-openshift/action/{push_openshift3_images.rb → push_openshift_images.rb} +3 -3
  23. data/lib/vagrant-openshift/action/{push_openshift3_release.rb → push_openshift_release.rb} +1 -1
  24. data/lib/vagrant-openshift/action/{run_openshift3_tests.rb → run_openshift_tests.rb} +1 -1
  25. data/lib/vagrant-openshift/action/run_systemctl.rb +2 -2
  26. data/lib/vagrant-openshift/action/setup_sample_policy.rb +42 -0
  27. data/lib/vagrant-openshift/action/sync_local_repository.rb +1 -5
  28. data/lib/vagrant-openshift/action/wait_for_openshift.rb +61 -0
  29. data/lib/vagrant-openshift/command/bootstrap_openshift.rb +50 -0
  30. data/lib/vagrant-openshift/command/{build_openshift3.rb → build_openshift.rb} +3 -4
  31. data/lib/vagrant-openshift/command/{build_openshift3_base.rb → build_openshift_base.rb} +3 -4
  32. data/lib/vagrant-openshift/command/{build_openshift3_base_images.rb → build_openshift_base_images.rb} +4 -5
  33. data/lib/vagrant-openshift/command/build_sti.rb +0 -1
  34. data/lib/vagrant-openshift/command/install_docker_registry.rb +50 -0
  35. data/lib/vagrant-openshift/command/{install_openshift3.rb → install_openshift.rb} +4 -5
  36. data/lib/vagrant-openshift/command/{install_openshift3_assets_base.rb → install_openshift_assets_base.rb} +4 -4
  37. data/lib/vagrant-openshift/command/{install_openshift3_router.rb → install_openshift_router.rb} +4 -5
  38. data/lib/vagrant-openshift/command/{local_openshift3_setup.rb → local_openshift_setup.rb} +3 -3
  39. data/lib/vagrant-openshift/command/openshift_init.rb +10 -5
  40. data/lib/vagrant-openshift/command/{push_openshift3_images.rb → push_openshift_images.rb} +4 -4
  41. data/lib/vagrant-openshift/command/{push_openshift3_release.rb → push_openshift_release.rb} +3 -3
  42. data/lib/vagrant-openshift/command/{repo_sync_openshift3.rb → repo_sync_openshift.rb} +3 -3
  43. data/lib/vagrant-openshift/command/{test_openshift3.rb → test_openshift.rb} +3 -3
  44. data/lib/vagrant-openshift/command/{test_openshift3_image.rb → test_openshift_image.rb} +2 -2
  45. data/lib/vagrant-openshift/command/{try_restart_openshift3.rb → try_restart_openshift.rb} +4 -5
  46. data/lib/vagrant-openshift/constants.rb +6 -5
  47. data/lib/vagrant-openshift/helper/command_helper.rb +3 -0
  48. data/lib/vagrant-openshift/plugin.rb +50 -40
  49. data/lib/vagrant-openshift/templates/command/init-openshift/box_info.yaml +42 -2
  50. data/lib/vagrant-openshift/version.rb +1 -1
  51. metadata +35 -28
@@ -18,7 +18,7 @@ require_relative "../action"
18
18
  module Vagrant
19
19
  module Openshift
20
20
  module Commands
21
- class TestOpenshift3 < Vagrant.plugin(2, :command)
21
+ class TestOpenshift < Vagrant.plugin(2, :command)
22
22
  include CommandHelper
23
23
 
24
24
  def self.synopsis
@@ -31,7 +31,7 @@ module Vagrant
31
31
  options[:all] = false
32
32
 
33
33
  opts = OptionParser.new do |o|
34
- o.banner = "Usage: vagrant test-openshift3 [machine-name]"
34
+ o.banner = "Usage: vagrant test-openshift [machine-name]"
35
35
  o.separator ""
36
36
 
37
37
  o.on("-a", "--all", String, "Run all tests") do |f|
@@ -56,7 +56,7 @@ module Vagrant
56
56
  return if !argv
57
57
 
58
58
  with_target_vms(argv, :reverse => true) do |machine|
59
- actions = Vagrant::Openshift::Action.run_openshift3_tests(options)
59
+ actions = Vagrant::Openshift::Action.run_openshift_tests(options)
60
60
  @env.action_runner.run actions, {:machine => machine}
61
61
  0
62
62
  end
@@ -19,7 +19,7 @@ module Vagrant
19
19
  module Openshift
20
20
  module Commands
21
21
 
22
- class TestOpenshift3Image < Vagrant.plugin(2, :command)
22
+ class TestOpenshiftImage < Vagrant.plugin(2, :command)
23
23
  include CommandHelper
24
24
 
25
25
  def self.synopsis
@@ -36,7 +36,7 @@ module Vagrant
36
36
  options[:registry] = ""
37
37
 
38
38
  opts = OptionParser.new do |o|
39
- o.banner = "Usage: vagrant test-openshift3-image --image IMAGE [vm-name]"
39
+ o.banner = "Usage: vagrant test-openshift-image --image IMAGE [vm-name]"
40
40
  o.separator ""
41
41
 
42
42
  o.on("-i", "--image IMAGE", String, "image to test") do |o|
@@ -18,20 +18,19 @@ require_relative "../action"
18
18
  module Vagrant
19
19
  module Openshift
20
20
  module Commands
21
- class TryRestartOpenshift3 < Vagrant.plugin(2, :command)
21
+ class TryRestartOpenshift < Vagrant.plugin(2, :command)
22
22
  include CommandHelper
23
23
 
24
24
  def self.synopsis
25
- "restarts openshift"
25
+ "restarts openshift if it's already running"
26
26
  end
27
27
 
28
28
  def execute
29
29
  options = {}
30
30
  options[:clean] = false
31
- options[:local_source] = false
32
31
 
33
32
  opts = OptionParser.new do |o|
34
- o.banner = "Usage: vagrant try-restart-openshift3 [vm-name]"
33
+ o.banner = "Usage: vagrant try-restart-openshift [vm-name]"
35
34
  o.separator ""
36
35
  end
37
36
 
@@ -40,7 +39,7 @@ module Vagrant
40
39
  return if !argv
41
40
 
42
41
  with_target_vms(argv, :reverse => true) do |machine|
43
- actions = Vagrant::Openshift::Action.try_restart_openshift3(options)
42
+ actions = Vagrant::Openshift::Action.try_restart_openshift(options)
44
43
  @env.action_runner.run actions, {:machine => machine}
45
44
  0
46
45
  end
@@ -20,23 +20,24 @@ module Vagrant
20
20
  class Constants
21
21
 
22
22
  def self.repos(env)
23
- openshift3_repos
23
+ openshift_repos
24
24
  end
25
25
 
26
- def self.openshift3_repos
26
+ def self.openshift_repos
27
27
  {
28
28
  'origin' => 'https://github.com/openshift/origin.git',
29
29
  'source-to-image' => 'https://github.com/openshift/source-to-image.git'
30
30
  }
31
31
  end
32
32
 
33
- def self.openshift3_images
33
+ def self.openshift_images
34
34
  {
35
35
  'openshift/base' => 'https://github.com/openshift/sti-base.git',
36
- 'openshift/ruby-20' => 'https://github.com/openshift/sti-ruby.git',
37
36
  'openshift/nodejs-010' => 'https://github.com/openshift/sti-nodejs.git',
38
- 'openshift/python-33' => 'https://github.com/openshift/sti-python.git',
39
37
  'openshift/perl-516' => 'https://github.com/openshift/sti-perl.git',
38
+ 'openshift/php-55' => 'https://github.com/openshift/sti-php.git',
39
+ 'openshift/python-33' => 'https://github.com/openshift/sti-python.git',
40
+ 'openshift/ruby-20' => 'https://github.com/openshift/sti-ruby.git',
40
41
  'openshift/mysql-55' => 'https://github.com/openshift/mysql.git',
41
42
  'openshift/mongodb-24' => 'https://github.com/openshift/mongodb.git',
42
43
  'openshift/postgresql-92' => 'https://github.com/openshift/postgresql.git'
@@ -124,6 +124,9 @@ pushd /data/src/github.com/openshift/#{repo_name}
124
124
  then
125
125
  #{build_cmd}
126
126
  else
127
+ echo "Commit ID: $commit_id"
128
+ echo "Previous Commit ID: $previous_commit_id"
129
+ echo "Git Status: $git_status"
127
130
  echo "No update for #{repo_name}, #{refname}"
128
131
  fi
129
132
  mkdir -p #{sync_path}
@@ -1,5 +1,5 @@
1
1
  #--
2
- # Copyright 2013 Red Hat, Inc.
2
+ # Copyright 2013-2015 Red Hat, Inc.
3
3
  #
4
4
  # Licensed under the Apache License, Version 2.0 (the "License");
5
5
  # you may not use this file except in compliance with the License.
@@ -32,9 +32,9 @@ module Vagrant
32
32
  Config
33
33
  end
34
34
 
35
- command "sync-openshift3" do
36
- require_relative "command/repo_sync_openshift3"
37
- Commands::RepoSyncOpenshift3
35
+ command "sync-openshift" do
36
+ require_relative "command/repo_sync_openshift"
37
+ Commands::RepoSyncopenshift
38
38
  end
39
39
 
40
40
  command "sync-sti" do
@@ -42,14 +42,14 @@ module Vagrant
42
42
  Commands::RepoSyncSti
43
43
  end
44
44
 
45
- command "build-openshift3-base" do
46
- require_relative "command/build_openshift3_base"
47
- Commands::BuildOpenshift3Base
45
+ command "build-openshift-base" do
46
+ require_relative "command/build_openshift_base"
47
+ Commands::BuildopenshiftBase
48
48
  end
49
49
 
50
- command "build-openshift3" do
51
- require_relative "command/build_openshift3"
52
- Commands::BuildOpenshift3
50
+ command "build-openshift" do
51
+ require_relative "command/build_openshift"
52
+ Commands::Buildopenshift
53
53
  end
54
54
 
55
55
  command "build-sti" do
@@ -57,29 +57,29 @@ module Vagrant
57
57
  Commands::BuildSti
58
58
  end
59
59
 
60
- command "install-openshift3" do
61
- require_relative "command/install_openshift3"
62
- Commands::InstallOpenshift3
60
+ command "install-openshift" do
61
+ require_relative "command/install_openshift"
62
+ Commands::Installopenshift
63
63
  end
64
64
 
65
- command "install-openshift3-assets-base" do
66
- require_relative "command/install_openshift3_assets_base"
67
- Commands::InstallOpenshift3AssetsBase
65
+ command "install-openshift-assets-base" do
66
+ require_relative "command/install_openshift_assets_base"
67
+ Commands::InstallopenshiftAssetsBase
68
68
  end
69
69
 
70
- command "try-restart-openshift3" do
71
- require_relative "command/try_restart_openshift3"
72
- Commands::TryRestartOpenshift3
70
+ command "try-restart-openshift" do
71
+ require_relative "command/try_restart_openshift"
72
+ Commands::TryRestartopenshift
73
73
  end
74
74
 
75
- command "build-openshift3-base-images" do
76
- require_relative "command/build_openshift3_base_images"
77
- Commands::BuildOpenshift3BaseImages
75
+ command "build-openshift-base-images" do
76
+ require_relative "command/build_openshift_base_images"
77
+ Commands::BuildopenshiftBaseImages
78
78
  end
79
79
 
80
- command "push-openshift3-images" do
81
- require_relative "command/push_openshift3_images"
82
- Commands::PushOpenshift3Images
80
+ command "push-openshift-images" do
81
+ require_relative "command/push_openshift_images"
82
+ Commands::PushopenshiftImages
83
83
  end
84
84
 
85
85
  command "origin-init" do
@@ -87,19 +87,19 @@ module Vagrant
87
87
  Commands::OpenshiftInit
88
88
  end
89
89
 
90
- command "openshift3-local-checkout" do
91
- require_relative "command/local_openshift3_setup"
92
- Commands::LocalOpenshift3Setup
90
+ command "openshift-local-checkout" do
91
+ require_relative "command/local_openshift_setup"
92
+ Commands::LocalopenshiftSetup
93
93
  end
94
94
 
95
- command "push-openshift3-release" do
96
- require_relative "command/push_openshift3_release"
97
- Commands::PushOpenshift3Release
95
+ command "push-openshift-release" do
96
+ require_relative "command/push_openshift_release"
97
+ Commands::PushopenshiftRelease
98
98
  end
99
99
 
100
- command "test-openshift3" do
101
- require_relative "command/test_openshift3"
102
- Commands::TestOpenshift3
100
+ command "test-openshift" do
101
+ require_relative "command/test_openshift"
102
+ Commands::Testopenshift
103
103
  end
104
104
 
105
105
  command "test-sti" do
@@ -132,14 +132,24 @@ module Vagrant
132
132
  Commands::CheckoutRepositories
133
133
  end
134
134
 
135
- command "test-openshift3-image" do
136
- require_relative "command/test_openshift3_image"
137
- Commands::TestOpenshift3Image
135
+ command "test-openshift-image" do
136
+ require_relative "command/test_openshift_image"
137
+ Commands::TestopenshiftImage
138
138
  end
139
139
 
140
- command "install-openshift3-router" do
141
- require_relative "command/install_openshift3_router"
142
- Commands::InstallOpenshift3Router
140
+ command "install-openshift-router" do
141
+ require_relative "command/install_openshift_router"
142
+ Commands::InstallopenshiftRouter
143
+ end
144
+
145
+ command "install-docker-registry" do
146
+ require_relative 'command/install_docker_registry'
147
+ Commands::InstallDockerRegistry
148
+ end
149
+
150
+ command "bootstrap-openshift" do
151
+ require_relative 'command/bootstrap_openshift'
152
+ Commands::BootstrapOpenshift
143
153
  end
144
154
 
145
155
  provisioner(:openshift) do
@@ -23,7 +23,7 @@
23
23
  :box_name: centos7_deps
24
24
  :box_url: http://mirror.openshift.com/pub/vagrant/boxes/openshift3/centos7_virtualbox_deps.box
25
25
  :libvirt:
26
- :box_name: centos7_base
26
+ :box_name: centos7_deps
27
27
  :box_url: http://mirror.openshift.com/pub/vagrant/boxes/openshift3/centos7_libvirt_deps.box
28
28
  :aws:
29
29
  :ami: <AMI_ID>
@@ -41,7 +41,7 @@
41
41
  :box_name: centos7_inst
42
42
  :box_url: http://mirror.openshift.com/pub/vagrant/boxes/openshift3/centos7_virtualbox_inst.box
43
43
  :libvirt:
44
- :box_name: centos7_base
44
+ :box_name: centos7_inst
45
45
  :box_url: http://mirror.openshift.com/pub/vagrant/boxes/openshift3/centos7_libvirt_inst.box
46
46
  :aws:
47
47
  :ami: <AMI_ID>
@@ -54,6 +54,20 @@
54
54
  :image: <CentOS 7>
55
55
  :flavor: m1.small
56
56
  :ssh_user: centos
57
+ :bootstrap:
58
+ :virtualbox:
59
+ :box_name: centos7_bootstrap
60
+ :box_url: http://mirror.openshift.com/pub/vagrant/boxes/openshift3/centos7_virtualbox_bootstrap.box
61
+ :libvirt:
62
+ :box_name: centos7_bootstrap
63
+ :box_url: http://mirror.openshift.com/pub/vagrant/boxes/openshift3/centos7_libvirt_bootstrap.box
64
+ :aws:
65
+ :ami: <AMI_ID>
66
+ :ami_region: us-east-1
67
+ :ssh_user: centos
68
+ :machine_name: <AMI_NAME>
69
+ :ebs_volume_size: 25
70
+ :ami_tag_prefix: devenv-centos7-bootstrap_
57
71
  :fedora:
58
72
  :os:
59
73
  :virtualbox:
@@ -109,6 +123,20 @@
109
123
  :libvirt:
110
124
  :box_name: fedora_inst
111
125
  :box_url: https://mirror.openshift.com/pub/vagrant/boxes/openshift3/fedora_libvirt_inst.box
126
+ :bootstrap:
127
+ :virtualbox:
128
+ :box_name: fedora_bootstrap
129
+ :box_url: http://mirror.openshift.com/pub/vagrant/boxes/openshift3/fedora_virtualbox_bootstrap.box
130
+ :aws:
131
+ :ami: <AMI_ID>
132
+ :ami_region: us-east-1
133
+ :ssh_user: fedora
134
+ :machine_name: <AMI_NAME>
135
+ :ebs_volume_size: 25
136
+ :ami_tag_prefix: devenv-fedora-bootstrap_
137
+ :libvirt:
138
+ :box_name: fedora_bootstrap
139
+ :box_url: http://mirror.openshift.com/pub/vagrant/boxes/openshift3/fedora_libvirt_bootstrap.box
112
140
  :rhel7:
113
141
  :os:
114
142
  :aws:
@@ -146,3 +174,15 @@
146
174
  :image: <RHEL 7>
147
175
  :flavor: m1.small
148
176
  :ssh_user: root
177
+ :bootstrap:
178
+ :aws:
179
+ :ami: <AMI_ID>
180
+ :ami_region: us-east-1
181
+ :ssh_user: root
182
+ :machine_name: <AMI_NAME>
183
+ :ebs_volume_size: 25
184
+ :ami_tag_prefix: devenv-rhel7-bootstrap_
185
+ :openstack:
186
+ :image: <RHEL 7>
187
+ :flavor: m1.small
188
+ :ssh_user: root
@@ -16,6 +16,6 @@
16
16
 
17
17
  module Vagrant
18
18
  module Openshift
19
- VERSION = "1.0.20"
19
+ VERSION = "2.0.0"
20
20
  end
21
21
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: vagrant-openshift
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.0.20
4
+ version: 2.0.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Red Hat
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2015-04-28 00:00:00.000000000 Z
11
+ date: 2015-05-06 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: rake
@@ -122,8 +122,9 @@ files:
122
122
  - Rakefile
123
123
  - lib/vagrant-openshift.rb
124
124
  - lib/vagrant-openshift/action.rb
125
- - lib/vagrant-openshift/action/build_openshift3.rb
126
- - lib/vagrant-openshift/action/build_openshift3_base_images.rb
125
+ - lib/vagrant-openshift/action/bootstrap_openshift.rb
126
+ - lib/vagrant-openshift/action/build_openshift.rb
127
+ - lib/vagrant-openshift/action/build_openshift_base_images.rb
127
128
  - lib/vagrant-openshift/action/build_sti.rb
128
129
  - lib/vagrant-openshift/action/checkout_repositories.rb
129
130
  - lib/vagrant-openshift/action/clean.rb
@@ -131,54 +132,60 @@ files:
131
132
  - lib/vagrant-openshift/action/clone_upstream_repositories.rb
132
133
  - lib/vagrant-openshift/action/create_ami.rb
133
134
  - lib/vagrant-openshift/action/create_bare_repo_placeholders.rb
135
+ - lib/vagrant-openshift/action/create_sample_project.rb
134
136
  - lib/vagrant-openshift/action/create_yum_repositories.rb
135
- - lib/vagrant-openshift/action/download_artifacts_openshift3.rb
137
+ - lib/vagrant-openshift/action/download_artifacts_openshift.rb
136
138
  - lib/vagrant-openshift/action/download_artifacts_sti.rb
137
139
  - lib/vagrant-openshift/action/generate_template.rb
138
- - lib/vagrant-openshift/action/install_openshift3.rb
139
- - lib/vagrant-openshift/action/install_openshift3_asset_dependencies.rb
140
- - lib/vagrant-openshift/action/install_openshift3_base_dependencies.rb
141
- - lib/vagrant-openshift/action/install_openshift3_images.rb
142
- - lib/vagrant-openshift/action/install_openshift3_rhel7.rb
143
- - lib/vagrant-openshift/action/install_openshift3_router.rb
144
- - lib/vagrant-openshift/action/local_openshift3_checkout.rb
140
+ - lib/vagrant-openshift/action/install_docker_registry.rb
141
+ - lib/vagrant-openshift/action/install_openshift.rb
142
+ - lib/vagrant-openshift/action/install_openshift_asset_dependencies.rb
143
+ - lib/vagrant-openshift/action/install_openshift_base_dependencies.rb
144
+ - lib/vagrant-openshift/action/install_openshift_images.rb
145
+ - lib/vagrant-openshift/action/install_openshift_rhel7.rb
146
+ - lib/vagrant-openshift/action/install_openshift_router.rb
147
+ - lib/vagrant-openshift/action/local_openshift_checkout.rb
145
148
  - lib/vagrant-openshift/action/modify_ami.rb
146
149
  - lib/vagrant-openshift/action/modify_instance.rb
147
150
  - lib/vagrant-openshift/action/prepare_ssh_config.rb
148
- - lib/vagrant-openshift/action/push_openshift3_images.rb
149
- - lib/vagrant-openshift/action/push_openshift3_release.rb
150
- - lib/vagrant-openshift/action/run_openshift3_tests.rb
151
+ - lib/vagrant-openshift/action/push_openshift_images.rb
152
+ - lib/vagrant-openshift/action/push_openshift_release.rb
153
+ - lib/vagrant-openshift/action/run_openshift_tests.rb
151
154
  - lib/vagrant-openshift/action/run_sti_tests.rb
152
155
  - lib/vagrant-openshift/action/run_systemctl.rb
153
156
  - lib/vagrant-openshift/action/set_host_name.rb
154
157
  - lib/vagrant-openshift/action/setup_bind_dns_key.rb
155
158
  - lib/vagrant-openshift/action/setup_bind_host.rb
159
+ - lib/vagrant-openshift/action/setup_sample_policy.rb
156
160
  - lib/vagrant-openshift/action/sync_local_repository.rb
157
161
  - lib/vagrant-openshift/action/sync_upstream_repository.rb
158
162
  - lib/vagrant-openshift/action/test_exit_code.rb
163
+ - lib/vagrant-openshift/action/wait_for_openshift.rb
159
164
  - lib/vagrant-openshift/action/yum_update.rb
160
- - lib/vagrant-openshift/command/build_openshift3.rb
161
- - lib/vagrant-openshift/command/build_openshift3_base.rb
162
- - lib/vagrant-openshift/command/build_openshift3_base_images.rb
165
+ - lib/vagrant-openshift/command/bootstrap_openshift.rb
166
+ - lib/vagrant-openshift/command/build_openshift.rb
167
+ - lib/vagrant-openshift/command/build_openshift_base.rb
168
+ - lib/vagrant-openshift/command/build_openshift_base_images.rb
163
169
  - lib/vagrant-openshift/command/build_sti.rb
164
170
  - lib/vagrant-openshift/command/checkout_repositories.rb
165
171
  - lib/vagrant-openshift/command/clone_upstream_repositories.rb
166
172
  - lib/vagrant-openshift/command/create_ami.rb
167
- - lib/vagrant-openshift/command/install_openshift3.rb
168
- - lib/vagrant-openshift/command/install_openshift3_assets_base.rb
169
- - lib/vagrant-openshift/command/install_openshift3_router.rb
170
- - lib/vagrant-openshift/command/local_openshift3_setup.rb
173
+ - lib/vagrant-openshift/command/install_docker_registry.rb
174
+ - lib/vagrant-openshift/command/install_openshift.rb
175
+ - lib/vagrant-openshift/command/install_openshift_assets_base.rb
176
+ - lib/vagrant-openshift/command/install_openshift_router.rb
177
+ - lib/vagrant-openshift/command/local_openshift_setup.rb
171
178
  - lib/vagrant-openshift/command/modify_ami.rb
172
179
  - lib/vagrant-openshift/command/modify_instance.rb
173
180
  - lib/vagrant-openshift/command/openshift_init.rb
174
- - lib/vagrant-openshift/command/push_openshift3_images.rb
175
- - lib/vagrant-openshift/command/push_openshift3_release.rb
176
- - lib/vagrant-openshift/command/repo_sync_openshift3.rb
181
+ - lib/vagrant-openshift/command/push_openshift_images.rb
182
+ - lib/vagrant-openshift/command/push_openshift_release.rb
183
+ - lib/vagrant-openshift/command/repo_sync_openshift.rb
177
184
  - lib/vagrant-openshift/command/repo_sync_sti.rb
178
- - lib/vagrant-openshift/command/test_openshift3.rb
179
- - lib/vagrant-openshift/command/test_openshift3_image.rb
185
+ - lib/vagrant-openshift/command/test_openshift.rb
186
+ - lib/vagrant-openshift/command/test_openshift_image.rb
180
187
  - lib/vagrant-openshift/command/test_sti.rb
181
- - lib/vagrant-openshift/command/try_restart_openshift3.rb
188
+ - lib/vagrant-openshift/command/try_restart_openshift.rb
182
189
  - lib/vagrant-openshift/config.rb
183
190
  - lib/vagrant-openshift/constants.rb
184
191
  - lib/vagrant-openshift/helper/command_helper.rb