README.md in infrataster-0.2.5 vs README.md in infrataster-0.2.6

- old
+ new

@@ -32,15 +32,15 @@ Vagrant.configure("2") do |config| config.vm.box = "hashicorp/precise64" config.vm.define :proxy do |c| c.vm.network "private_network", ip: "192.168.33.10" - c.vm.network "private_network", ip: "171.16.33.10", virtualbox__intnet: "infrataster-example" + c.vm.network "private_network", ip: "172.16.33.10", virtualbox__intnet: "infrataster-example" end config.vm.define :app do |c| - c.vm.network "private_network", ip: "171.16.33.11", virtualbox__intnet: "infrataster-example" + c.vm.network "private_network", ip: "172.16.33.11", virtualbox__intnet: "infrataster-example" end end ``` Start VMs: @@ -173,20 +173,22 @@ ```ruby Infrataster::Server.define( :app, # find IP address matching 172.16.0.0 ~ 172.16.255.255 '172.16.0.0/16', +) ``` Of course, you can set fully-specified IP address too. ```ruby Infrataster::Server.define( :app, '172.16.11.22', # or '172.16.11.22/32', +) ``` ### #ssh_exec You can execute a command on the server like the following: @@ -269,12 +271,30 @@ `pgsql_query` is provided by [infrataster-plugin-pgsql](https://github.com/SnehaM/infrataster-plugin-pgsql) by [@SnehaM](https://github.com/SnehaM). ### `dns` resource -`dns` resource send query to DNS server. +`dns` resource sends a query to DNS server. `dns` is provided by [infrataster-plugin-dns](https://github.com/otahi/infrataster-plugin-dns) by [@otahi](https://github.com/otahi). + +### `memcached` resource + +`memcached` resource sends a query to memcached server. + +`memcached` is provided by [infrataster-plugin-memecached](https://github.com/rahulkhengare/infrataster-plugin-memcached) by [@rahulkhengare](https://github.com/rahulkhengare). + +### `redis` resource + +`redis` resource sends a query to redis server. + +`redis` is provided by [infrataster-plugin-redis](https://github.com/rahulkhengare/infrataster-plugin-redis) by [@rahulkhengare](https://github.com/rahulkhengare). + +### `firewall` resource + +`firewall` resource tests your firewalls. + +`firewall` is provided by [infrataster-plugin-firewall](https://github.com/otahi/infrataster-plugin-firewall) by [@otahi](https://github.com/otahi). ## Example * [example](example) * [spec/integration](spec/integration)