July 2018
Intermediate to advanced
504 pages
11h 34m
English
Before introduction of Minishift in May 2017, users mostly relied on openshift/origin-all-in-one Vagrant all-in-one box. This method is not so popular, because the box hasn't been updated for almost 2 years and represents OpenShift Origin 1.3, which lacks in features, as well as in stability, so it's mostly of historical interest today. Even though it can still be used for testing purposes, we suggest you rely on oc cluster up and Minishift.
A Vagrant-based environment can be deployed as follows:
$ vagrant init openshift/origin-all-in-one$ vagrant up
The preceding command will create the following Vagrantfile:
$ cat VagrantfileVagrant.configure("2") do |config| config.vm.box = "openshift/origin-all-in-one" ...Read now
Unlock full access