名前は聞いたことがあったもののどんなものかよく分かってなかったので、下記チュートリアルページを参考にCloud Foundryを触ってみました。
VMware Cloud Foundry入門 - Getting Started (Japanese)
Cloud FoundryはVMwareが提供しているオープンソースのPaaSフレームワークで、ソースコードを取得してPaaS環境を構築できるほか、VMwareがvSphereデータセンター内で運営しているCloud Foundryのホステッド環境に接続することができます。現在はβ版ということで、無料で利用できるようです。
まずは http://www.cloudfoundry.com/ でメールアドレスを登録してサインアップ。すぐに「Welcome to Cloud Foundry」という件名のメールが届きますが、これは登録を受け付けたというだけで、実際にアカウントが用意されて使用可能になるのはしばらくして「Welcome to Cloud Foundry - Your signup is approved!」という件名のメールでパスワードが届いてからになります。私の場合は2日ほどで届きました。
とりあえず自宅PCのWindows環境で試してみました。まず http://www.rubyinstaller.org/ から rubyinstaller-1.9.3-p0.exe をダウンロードしてRubyをインストールします。
C:\Users\akanuma>ruby -version ruby 1.9.3p0 (2011-10-30) [i386-mingw32] -e:1:in `<main>': undefined local variable or method `rsion' for main:Object (NameError)
なにやらエラーが出ていますが、とりあえず続行。
Cloud FoundryのCLIであるvmcをインストールします。
C:\Users\akanuma>gem install vmc Fetching: spruz-0.2.13.gem (100%) Fetching: json_pure-1.5.4.gem (100%) Fetching: rubyzip2-2.0.1.gem (100%) Fetching: mime-types-1.17.2.gem (100%) Fetching: rest-client-1.6.7.gem (100%) Fetching: terminal-table-1.4.4.gem (100%) Fetching: interact-0.2.gem (100%) Fetching: vmc-0.3.13.gem (100%) Successfully installed spruz-0.2.13 Successfully installed json_pure-1.5.4 Successfully installed rubyzip2-2.0.1 Successfully installed mime-types-1.17.2 Successfully installed rest-client-1.6.7 Successfully installed terminal-table-1.4.4 Successfully installed interact-0.2 Successfully installed vmc-0.3.13 8 gems installed Installing ri documentation for spruz-0.2.13... Installing ri documentation for json_pure-1.5.4... Installing ri documentation for rubyzip2-2.0.1... Installing ri documentation for mime-types-1.17.2... Installing ri documentation for rest-client-1.6.7... unable to convert "\xE2" to UTF-8 in conversion from ASCII-8BIT to UTF-8 to Windows-31J for README.rdoc, skipping Installing ri documentation for terminal-table-1.4.4... Installing ri documentation for interact-0.2... Installing ri documentation for vmc-0.3.13... Installing RDoc documentation for spruz-0.2.13... Installing RDoc documentation for json_pure-1.5.4... Installing RDoc documentation for rubyzip2-2.0.1... Installing RDoc documentation for mime-types-1.17.2... Installing RDoc documentation for rest-client-1.6.7... unable to convert "\xE2" to UTF-8 in conversion from ASCII-8BIT to UTF-8 to Windows-31J for README.rdoc, skipping Installing RDoc documentation for terminal-table-1.4.4... Installing RDoc documentation for interact-0.2... Installing RDoc documentation for vmc-0.3.13...
vmcのtargetコマンドでデプロイ対象を api.cloudfoundry.com に設定します。
C:\Users\akanuma>vmc target api.cloudfoundry.com Succesfully targeted to [http://api.cloudfoundry.com]
続けてログインコマンドを実行します。
C:\Users\akanuma>vmc login Email: xxxxxxxxxx@xxxxx.xxx Password: ******** Successfully logged into [http://api.cloudfoundry.com]
そしてアプリケーションを作成するためのディレクトリを作成して移動します。
C:\Users\akanuma>mkdir hello C:\Users\akanuma>cd hello C:\Users\akanuma\hello>
次にhllo.rbという名前で下記内容のファイルを作成します。文字コードはUTF-8で、改行コードはLFにしないと失敗するようです。
require 'sinatra' get '/' do "Hello from Cloud Foundry!" end
アプリケーションをデプロイします。vmc pushコマンドを実行すると追加の情報入力用のプロンプトが表示されますので、それぞれ下記のように入力します。
C:\Users\akanuma\hello>vmc push Would you like to deploy from the current directory? [Yn]: Application Name: akanumahello Application Deployed URL ["akanumahello.cloudfoundry.com"]: Detected a Sinatra Application, is this correct? [Yn]: Memory Reservation ("64M", "128M", "256M", "512M", "1G", "2G") ["128M"]: Creating Application: OK Would you like to bind any services to 'akanumahello'? [yN]: Uploading Application: Checking for available resources: OK Packing application: OK Uploading (0K): OK Push Status: OK Staging Application: OK Starting Application: OK
無事デプロイされたようです。ブラウザで http://akanumahello.cloudfoundry.com/ にアクセスして「Hello from Cloud Foundry!」と表示されればひとまず成功です。
続けて変更を加えてみます。hello.rbの "Hello from Cloud Foundry!" を "Hello from Cloud Foundry and VMware!" に変更して保存します。そして下記コマンドでサーバ上に変更を反映します。
C:\Users\akanuma\hello>vmc update akanumahello Uploading Application: Checking for available resources: OK Packing application: OK Uploading (0K): OK Push Status: OK Stopping Application: OK Staging Application: OK Starting Application: OK
ブラウザで再度表示を確認して、変更が反映されていれば成功です。
このチュートリアルを試す限りは簡単にアプリケーションを公開できそうです。メモリも2GBまでは使えるようですので、あまり負荷の高くないアプリケーションであれば十分に使えそうです。