Book Image

Implementing OpenShift

By : Adam Miller
Book Image

Implementing OpenShift

By: Adam Miller

Overview of this book

Gone are the days of having to provision hardware, deploy, and manage an entire environment just to write code for the next big idea, project, or custom web application. A Platform-as-a-Service cloud aims to fulfill this need, allowing developers to work more efficiently as well as allowing DevOps teams to spend less time fulfilling requests for these environments. Join us as we move into the future with OpenShift. Implementing OpenShift will walk the reader through how to easily develop and deploy upon an open source OpenShift Platform-as-a-Service. We will then discuss the architecture of the platform so that users have some insight into the inner workings of the environment. We will then take a step away from the user aspect and cover DevOps topics so that we can perform the deployment of our very own open source Platform-as-a-Service using the upstream OpenShift Origin code base. Developers are no longer in need of provisioning full-scale development environments by provisioning servers, installing and configuring software, and maintaining infrastructure just to write software. This book will show you how developers can move out of this archaic mindset and into the future utilizing OpenShift Platform-as-a-Service technologies, breaking away from the marketing jargon and into the technology that allows developers to get work done. This book also delves into the realm of DevOps, allowing you to run your own environment to support your development teams more efficiently. This book will show you how the OpenShift Platform-as-a-Service can redefine the way web application developers work by providing the building blocks upon which they are able to create their next big idea. From there, the reader will progress through the OpenShift architecture and on to a brisk automated deployment using DevOps technologies. You will learn everything you need to know in order to use OpenShift to develop and deploy applications in the cloud as well as how to deploy your very own OpenShift Origin-based Platform-as-a-Service cloud.
Table of Contents (12 chapters)

IDE Integrations


Some developers enjoy their command-line editors, such as Vim or Emacs; some enjoy a graphical text editor targeted at developers, such as Gedit, Sublime Text, Kate, TextMate, or Notepad++, and others enjoy an IDE. An IDE is a piece of software used to develop software, often containing things such as build automation tools, debugging capabilities, compilers, interpreters, and often with a plugin ecosystem to provide extended functionality. Two examples of very popular IDEs are the Open Source IDE, named Eclipse, and Microsoft's Visual Studio. Continuing with the theme of offering developers as much choice as possible, not only does OpenShift offer command-line utilities and a web console, but also an IDE with built-in OpenShift capabilities named JBoss Developer Studio (JBDS) by Red Hat, which is based on the Open Source Eclipse IDE.

The first step is to download and install JBDS by following the instructions available at https://devstudio.jboss.com/download/7.x.html; once...