faas template pull https://github.com/openfaas-incubator/ruby-http
faas new --lang ruby-http homepage
Edit the homepage/handler.rb
file to return some HTML:
class Handler
def run(body, headers)
status_code = 200 # Optional status code, defaults to 200
response_headers = {"content-type" => "text/html"}
body = "<html>Hello world from the Ruby template</html>"
return body, response_headers, status_code
end
end
Add a gem to the homepage/Gemfile
if you need additional dependencies.
Deploy:
faas-cli up -f homepage.yml