OpenShift is Red Hat’s PaaS platform and comes in three flavors:
This Tech Tip will show how you can setup a Virtual VM running with OpenShift Online. Instructions at openshift.github.io/documentation/oo_deployment_guide_vm.html are pretty self explanatory. Here are the exact ones that I followed on Mavericks:
curl -O https://mirror.openshift.com/pub/origin-server/release/4/images/openshift-origin.tgz
tar xzvf ~/Downloads/openshift-origin.tgz x OpenShift Origin v4/ x OpenShift Origin v4/OpenShift Origin v4.nvram x OpenShift Origin v4/OpenShift Origin v4.vbox x OpenShift Origin v4/OpenShift Origin v4.vmsd x OpenShift Origin v4/OpenShift Origin v4.vmx x OpenShift Origin v4/OpenShift Origin v4.vmxf x OpenShift Origin v4/._origin-vm.vmdk x OpenShift Origin v4/origin-vm.vmdk
origin-vm.vmdk
file.
IMPORTANT: Instead of 4.2.4 to add bridged networking, setup a host-only network using 4.2.5.
Type “5” to exit to the command prompt.
The username/password are “demo”/”changeme”.
ssh -f -L 8080:localhost:8080 -N
Password is “changeme”. OpenShift admin console is now accessible at localhost:8080/admin-console and looks like:
Many thanks to Harrison for guiding me through creating this process!
Ask your OpenShift questions at stackoverflow or follow them at @openshift.
Enjoy!
Thanks for this updated guide in which bridged network adapter is not setup at all, but only the ho vvst-only network. Now, my understanding is that the OpenShift CM can not connect to outside internet making quickstart and other external cartridge installation impossible. It also says so in the linked 4.2.5. guide. So, I’m a bit puzzeled whether the VirtualBox is suitable virtualization engine for OpenShift Online..
Could you elaborate on this?
Cheers,
-OpenITeX => experimancer of all #open tech
experimancer – couple of comments on that:
1. Just to clarify – the OpenShift VM actually runs a version of OpenShift Origin, which is the community version of OpenShift. Meanwhile, OpenShift Online is our commercially hosted version, which runs at openshift.com.
2. The VM ships with a network adapter configuration that seems to work fine in VirtualBox in most situations. However, as noted in the VM Deployment Guide, we hit some cases where VirtualBox did not handle the networking correctly when we were connected to a VPN. This is why we provide an alternative network configuration; it is not ideal but enables users to get some sense of how OpenShift Origin works even in those conditions.
That said, VirtualBox is only one deployment option for the VM. As you can see in the VM Deployment Guide, we also support KVM and VMWare.
Hope this helps!