This is an in-depth tutorial for using Metaparticle/Package for Ruby
For a quick summary, please see the README.
The docker command line tool needs to be installed and working. Try:
docker ps to verify this. Go to the install page if you need
to install Docker.
The mp-compiler command line tool needs to be installed and working.
Try mp-compiler --help to verify this. Go to the releases page if you need to install
the Metaparticle compiler.
$ git clone https://github.com/metaparticle-io/package
$ cd package/tutorials/ruby/
# [optional, substitute your favorite editor here...]
$ code .Inside of the tutorials/ruby directory, you will find a simple sinatra project.
You can build this project with ruby app.rb.
The initial code is a very simple "Hello World"
require 'rubygems'
require 'sinatra/base'
class App < Sinatra::Base
set :bind, '0.0.0.0'
get '/' do
'Hello World'
end
run!
endYou can run this with ruby app.rb.
To build a container from our simple application we need to add a dependency to our build file, and then update the code.
Run:
gem install metaparticleThen update the code to read as follows:
require 'rubygems'
require 'metaparticle'
require 'sinatra/base'
Metaparticle::Package.containerize(
{
ports: [4567],
name: 'sinatra-app',
repository: 'christopherhein',
}) do
class App < Sinatra::Base
set :bind, '0.0.0.0'
get '/' do
'metaparticle from ruby!'
end
run!
end
endYou will notice that we added a Metaparticle::Package.containerize class.
This class takes two arguments, an object that describes how
to package the application. You will need to replace your-docker-user-goes-here
with an actual Docker repository path.
The Metaparticle::Package.containerize also takes a function to execute inside the container, in this case
the web server.
Once you have this, you can run the program with:
ruby app.rbThis code will start your web server again. But this time, it is running inside a container. You can see this by running:
docker psAs a final step, consider the task of exposing a replicated service on the internet.
To do this, we're going to expand our usage of the options object. First we will
add a replicas field, which will specify the number of replicas. Second we will
set our execution environment to metaparticle which will launch the service
into the currently configured Kubernetes environment.
Here's what the snippet looks like:
Metaparticle::Package.containerize(
{
name: 'sinatra-app',
ports: [4567],
replicas: 4,
runner: 'metaparticle',
repository: 'christopherhein',
publish: true,
public: true
}) do
...
endAnd the complete code looks like:
require 'rubygems'
require 'metaparticle'
require 'sinatra/base'
class App < Sinatra::Base
set :bind, '0.0.0.0'
get '/' do
'metaparticle from ruby!'
end
end
Metaparticle::Package.containerize(
{
name: 'sinatra-app',
ports: [4567],
replicas: 4,
runner: 'metaparticle',
repository: 'christopherhein',
publish: true,
public: true
}) do
App.run!
endAfter you compile and run this, you can see that there are four replicas running behind a Kubernetes Service Load balancer:
$ kubectl get pods
...
$ kubectl get services
...