Foundations of OpenShift

Learn the foundations of OpenShift through hands-on experience deploying and working with applications, using a no-cost OpenShift cluster through the Developer Sandbox for Red Hat OpenShift.

In this lesson, you will learn how to use a web console and create a database instance in Developer Sandbox for Red Hat OpenShift. You will also learn how to create a Node.js instance from source code and bind it with the database running in OpenShift. 


What you need to know

In order to get full benefit from this lesson, you need to:

  • Understand how Kubernetes is the foundational technology for OpenShift.
  • Know how to access the Developer Sandbox for Red Hat OpenShift via web browser.
  • Know how to use the web console to add applications and components to OpenShift.
  • Understand how environment variables provide information to an application are runtime.

What you will learn

In this lesson, you will: 

  • Install a MongoDB ephemeral database template at the command line, making it available to the web console.
  • Create an instance of a database in Developer Sandbox for Red Hat OpenShift using the web console.
  • Create an instance of a Node.js application from source code stored in GitHub using the web console.
  • Bind the Node.js application to the database running in OpenShift.

Understand the demonstration scenario

The objective of this lesson is to demonstrate installing and running a Node.js application that is bound to a database that you will also install. Both the Node.js application and the database will run in the Developer Sandbox for Red Hat OpenShift.

The Node.js application publishes a web page that allows users to choose a name at random then store that random name in a database to which the application is bound. Also, the application web page displays a list of names stored in the database (Figure 1).

The Node.JS demonstration application allows users to get, store and list random names.
Figure 1: The Node.js demonstration application allows users to get, store, and list random names.

The demonstration scenario uses a MongoDB database which you’ll install using the web console. Also, you’ll install the Node.js application in OpenShift using the install from source code feature available in the web console.

The Node.js application has a server-side API that stores and retrieves data stored in the MongoDB database. Also, the Node.js application publishes a web page that is bound to the server-side API. Users interact with the web page and the web page, in turn, interacts with the server-side API (Figure 2).

The demonstration project binds a Node.JS application running in the Developer Sandbox to an instance of a database that’s also running OpenShift
Figure 2: The demonstration project binds a Node.js application running in the Developer Sandbox for Red Hat OpenShift to an instance of a database that’s also running OpenShift.

The way that Node.js binds to the MongoDB database is by way of a connection URL that’s created by OpenShift during the database installation process. The URL will contain the username and password information. You’ll declare the username and password information when you install the MongoDB database.

The Node.js application references the MongoDB connection URL to create a connection to the database. The way that the Node.js application knows the connection URL is by way of an environment variable that’s created as part of the process of installing the Node.js application in the Developer Sandbox for Red Hat OpenShift.

The sections that follow demonstrate how to install the MongoDB database and install the Node.js application along with steps necessary to expose and consume the MongoDB connection URL.

Install the MongoDB ephemeral database template at the command line

Log in to your cluster at the command line. If you’re unsure how to do this, you can find instructions here: Access your Developer Sandbox for Red Hat OpenShift from the command line.

Run the following two commands to create the MongoDB ephemeral database template:

oc create -f https://raw.githubusercontent.com/openshift-labs/starter-guides/ocp-4.8/mongodb-template.yaml
oc import-image mongodb:3.6 --from=registry.access.redhat.com/rhscl/mongodb-36-rhel7 --confirm

Access the OpenShift web console using the Developer Sandbox for Red Hat OpenShift

Take the following steps to access the OpenShift web console in the Developer Sandbox for Red Hat OpenShift. You’ll do the work of installing and configuring the MongoDB and Node.js instances using the web console.

  1. Using your web browser, navigate here and select Start your sandbox for free (Figure 3).
    The entry point for access to the OpenShift Developer Sandbox for Red Hat OpenShift
    Figure 3: The entry point for access to the OpenShift Developer Sandbox for Red Hat OpenShift
  2. Provide the username and password for your Red Hat account (Figure 4).
    Log into the OpenShift web console with the username and password associate with your account on Red Hat
    Figure 4: Log into the OpenShift web console with the username and password associate with your account on Red Hat.

Install a database using the OpenShift web console

This demonstration scenario requires that you install a MongoDB database in the Developer Sandbox for Red Hat OpenShift. You will install the database by using a template listed in the web console’s Developer Catalog:

  1. Click +Add on the left side of the web console (Figure 5, Callout 1).
  2. The Developer Catalog page will appear. Click Database (Figure 5, Callout 2).
  3. The web page with database text blocks will appear. Click MongoDB (Figure 5, Callout 3).
    The Web Console’s Developer Catalog lists database templates available for installation.
    Figure 5: The web console’s Developer Catalog lists database templates available for installation.
  4. The MongoDB template page will appear. Click Instantiate Template to expose the web page where you will enter configuration information for the MongoDB database (Figure 6, Callout 1).
  5. Enter genuser in the MongoDB Connection Username text box (Figure 6, Callout 2).
  6. Enter password in the MongoDB Connection Password text box (Figure 6, Callout 3).
  7. Enter namegen in the MongoDB Database Name text box (Figure 6, Callout 4).
  8. Enter password in the MongoDB Admin Password text box (Figure 6, Callout 5).
  9. Select Create (Figure 6, Callout 6).
    Enter configuration information for the MongoDB instance in the the Instantiate Template web page
    Figure 6: Enter configuration information for the MongoDB instance in the the Instantiate Template web page
  10. Executing the steps shown above will create an instance of MongoDB in the Developer Sandbox for Red Hat OpenShift. OpenShift will automatically implement the following connection URL:
    mongodb://genuser:password@mongodb
  11. The connection URL is constructed according to the following naming pattern:
    mongodb://<username>:<connection_password>@<service_name>

About the parameters:

  • username is the username you defined earlier when you configured the MongoDB template.
  • connection password is the password you defined earlier when you configured the MongoDB template.
  • service name is the underlying Kubernetes service that is created as part of the database installation process. In this case, the service name is mongodb, which was provided by default in the MongoDB Template configuration page (Figure 7).
The Database Service Name is a name of the Kubernetes service that will represent the MongoDB database in the OpenShift cluster of the Developer Sandbox for Red Hat OpenShift.
Figure 7: Database Service Name represents the MongoDB database in the OpenShift cluster.

After you create the MongoDB instance, it will appear in the Topology view (Figure 8).

The MongoDB database will appear in the Topology view after it’s installed.
Figure 8: The MongoDB database will appear in the Topology view after it’s installed.

Once the MongoDB database is installed and the connection URL is known, you’re ready to install the Node.js application.

Install a Node.js application from GitHub using the web console

The following describes the steps required to install the Node.js application into the Developer Console. You will install the application using the OpenShift Install from Git feature.

  1. Select +Add on the left side of the web console (Figure 9, Callout 1).
  2. The Developer Catalog page will appear. Select the Import from Git text block (Figure 9, Callout 2).
    You can install an application in the Developer Sandbox for Red Hat OpenShift from source code stored in a Git repository
    Figure 9: You can install an application in the Developer Sandbox for Red Hat OpenShift from source code stored in a Git repository
  3. An Import from Git web page will appear when you click the text block (Figure 10, Callout 1). Enter the following URLinto the Git Repository URL text box:
    https://github.com/redhat-developer-demos/namegen
  4. Scroll down the page until you come to the Application name text box (Figure 10, Callout 2) and enter the following text:
    random-name-gen
  5. Enter the following text (Figure 10, Callout 3) in the Name text box:
    random-name-gen
    The web console allows you to install an application by declaring the location of the source code in a Git repository
    Figure 10: The web console allows you to install an application by declaring the location of the source code in a Git repository
  6. Scroll further down the Import from Git web page to the section above the Create button. You will see an option, Build configurationSelect this option (Figure 11, Callout 1).
  7. The web page will expand to display a section titled Build configuration (Figure 11, Callout 2). Enter the following text in the Name text box of the section labeled Environmental variable (build and runtime):​​​
    MONGODB_URL
  8. Enter the following text (Figure 11, Callout 3) in the Value field:
    mongodb://genuser:password@mongodb
  9. Notice that the value of the environment variable is the connection URL to the MongoDB instance you installed previously. The environment variable is the mechanism that provides the Node.js application with the information it needs to connect to the MongoDB database.
  10. Select Create. This will start the process of installing the Node.js application from source code (Figure 11, Callout 4).
    The connection URL to the MongoDB database that the Node.JS application uses is stored as an environment variable
    Figure 11: The connection URL to the MongoDB database that the Node.JS application uses is stored as an environment variable
  11. Behind the scenes, OpenShift will automatically do the work of converting the source code into a Linux container that gets added to a Kubernetes pod that OpenShift also created. That pod represents the application in the Developer Sandbox for Red Hat OpenShift. Also, OpenShift will create the Kubernetes service and route that will make the application accessible on the Internet.
  12. The Node.js application will appear in the Topology view as a graphic with a light-blue circle. The light-blue circle means that the application is building (Figure 12).
    An application that is building will display a light blue circle in its graphic in Topology view.
    Figure 12: An application that is building will display a light blue circle in its graphic in Topology view.
  13. When the application’s build process is complete, the circle in the Node.js application graphic in Topology view will turn dark blue (Figure 13).
    A built application will display a dark blue circle which means the application is up and running and accessible on the Internet by clicking the icon on the upper right of the graphic.
    Figure 13: A built application will display a dark blue circle which means the application is up and running and accessible on the Internet by clicking the icon on the upper right of the graphic.

View the web application in a browser

Once the circle in the Topology view Node.js graphic turns dark blue, click the icon on the upper right corner of Node.js graphic. Clicking the icon will open up a window in your browser that displays the Node.js application’s web page (Figure 14).

The Node.JS demonstration application generates a random name on demand and then adds the name to a list of names stored in the MongoDB database
Figure 14: The Node.js demonstration application generates a random name on demand and then adds the name to a list of names stored in the MongoDB database.

 The application is now up and running. You can exercise the application by selecting Get Random Name. An automatically generated random name will appear.

Also, the button labeled Save Name will be enabled. Click the Save Name button to add the newly created random name to List of Names. 

Review

In this lesson, you learned how to install an instance of MongoDB template in the OpenShift Catalog using the web console. You learned how to declare a database user, password, and default database during the installation process.

In addition, you learned how to use the Developer Sandbox for Red Hat OpenShift web console to install an instance of a custom application from source code in GitHub. Also, you learned how to configure the application to bind to the MongoDB database by assigning a connection URL for the MongoDB instance to an environment variable that you declared during the installation process of the custom application.

Finally, after installing the MongoDB instance and custom application in the Developer Sandbox for Red Hat OpenShift, you exercised the custom application from a browser window via its web interface. 

Next

In the next lesson, you’ll learn how to install a database and custom application that uses a database using the oc CLI tool.

Previous resource
Work with databases in OpenShift using the oc CLI tool
Next resource
View performance information using the OpenShift web console