Skip to content

xiazhao2015/sti-ruby

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Ruby for OpenShift - Docker images

This repository contains the source for building various versions of the Ruby application as a reproducible Docker image using source-to-image. Users can choose between RHEL and CentOS based builder images. The resulting image can be run using Docker.

Versions

Ruby versions currently provided are:

  • ruby-2.0
  • ruby-2.2

RHEL versions currently supported are:

  • RHEL7

CentOS versions currently supported are:

  • CentOS7

Installation

To build a Ruby image, choose either the CentOS or RHEL based image:

  • RHEL based image

    To build a RHEL based Ruby image, you need to run the build on a properly subscribed RHEL machine.

    $ git clone https://github.com/openshift/sti-ruby.git
    $ cd sti-ruby
    $ make build TARGET=rhel7 VERSION=2.0
    
  • CentOS based image

    This image is available on DockerHub. To download it run:

    $ docker pull openshift/ruby-20-centos7
    

    To build a Ruby image from scratch run:

    $ git clone https://github.com/openshift/sti-ruby.git
    $ cd sti-ruby
    $ make build VERSION=2.0
    

Notice: By omitting the VERSION parameter, the build/test action will be performed on all provided versions of Ruby.

Usage

To build a simple ruby-sample-app application using standalone S2I and then run the resulting image with Docker execute:

  • For RHEL based image

    $ s2i build https://github.com/openshift/sti-ruby.git --context-dir=2.0/test/puma-test-app/ openshift/ruby-20-rhel7 ruby-sample-app
    $ docker run -p 8080:8080 ruby-sample-app
    
  • For CentOS based image

    $ s2i build https://github.com/openshift/sti-ruby.git --context-dir=2.0/test/puma-test-app/ openshift/ruby-20-centos7 ruby-sample-app
    $ docker run -p 8080:8080 ruby-sample-app
    

Accessing the application:

$ curl 127.0.0.1:8080

Test

This repository also provides a S2I test framework, which launches tests to check functionality of a simple Ruby application built on top of the sti-ruby image.

Users can choose between testing a Ruby test application based on a RHEL or CentOS image.

  • RHEL based image

    To test a RHEL7-based Ruby-2.0 image, you need to run the test on a properly subscribed RHEL machine.

    $ cd sti-ruby
    $ make test TARGET=rhel7 VERSION=2.0
    
  • CentOS based image

    $ cd sti-ruby
    $ make test VERSION=2.0
    

Notice: By omitting the VERSION parameter, the build/test action will be performed on all the provided versions of Ruby.

Repository organization

  • <ruby-version>

    • Dockerfile

      CentOS based Dockerfile.

    • Dockerfile.rhel7

      RHEL based Dockerfile. In order to perform build or test actions on this Dockerfile you need to run the action on a properly subscribed RHEL machine.

    • s2i/bin/

      This folder contains scripts that are run by S2I:

      • assemble

        Used to install the sources into the location where the application will be run and prepare the application for deployment (eg. installing modules using bundler, etc.)

      • run

        This script is responsible for running the application by using the application web server.

      • usage*

        This script prints the usage of this image.

    • contrib/

      This folder contains a file with commonly used modules.

    • test/

      This folder contains a S2I test framework with a simple Rack server.

      • puma-test-app/

        Simple Puma web server used for testing purposes by the S2I test framework.

      • rack-test-app/

        Simple Rack web server used for testing purposes by the S2I test framework.

      • run

        Script that runs the S2I test framework.

  • hack/

    Folder containing scripts which are responsible for build and test actions performed by the Makefile.

Image name structure

Structure: openshift/1-2-3
  1. Platform name (lowercase) - ruby
  2. Platform version(without dots) - 20
  3. Base builder image - centos7/rhel7

Examples: openshift/ruby-20-centos7, openshift/ruby-20-rhel7

Environment variables

To set these environment variables, you can place them as a key value pair into a .sti/environment file inside your source code repository.

  • RACK_ENV

    This variable specifies the environment where the Ruby application will be deployed (unless overwritten) - production, development, test. Each level has different behaviors in terms of logging verbosity, error pages, ruby gem installation, etc.

    Note: Application assets will be compiled only if the RACK_ENV is set to production

  • DISABLE_ASSET_COMPILATION

    This variable set to true indicates that the asset compilation process will be skipped. Since this only takes place when the application is run in the production environment, it should only be used when assets are already compiled.

Hot deploy

In order to dynamically pick up changes made in your application source code, you need to make following steps:

  • For Ruby on Rails applications

    Run the built Rails image with the RAILS_ENV=development environment variable passed to the Docker -e run flag:

    $ docker run -e RAILS_ENV=development -p 8080:8080 rails-app
    
  • For other types of Ruby applications (Sinatra, Padrino, etc.)

    Your application needs to be built with one of gems that reloads the server every time changes in source code are done inside the running container. Those gems are:

    Please note that in order to be able to run your application in development mode, you need to modify the S2I run script, so the web server is launched by the chosen gem, which checks for changes in the source code.

    After you built your application image with your version of S2I run script, run the image with the RACK_ENV=development environment variable passed to the Docker -e run flag:

    $ docker run -e RACK_ENV=development -p 8080:8080 sinatra-app
    

To change your source code in running container, use Docker's exec command:

docker exec -it <CONTAINER_ID> /bin/bash

After you Docker exec into the running container, your current directory is set to /opt/app-root/src, where the source code is located.

About

No description, website, or topics provided.

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • Shell 88.9%
  • Ruby 7.8%
  • Makefile 3.3%