Description
Kanrisuru manages remote infrastructure with plain ruby objects. The goal with Kanrisuru is to provide a clean objected oriented wrapper over the most commonly used linux commands, with a clean command interface, and with any usable output, present that as parsed structured data. Kanrisuru doesn't use remote agents to run commands on hosts, nor does the project rely on a large complex set of dependencies.
Kanrisuru alternatives and similar gems
Based on the "DevOps Tools" category.
Alternatively, view kanrisuru alternatives based on common mentions on social networks and blogs.
-
Chef
Chef Infra, a powerful automation platform that transforms infrastructure into code automating how infrastructure is configured, deployed and managed across any environment, at any scale -
BOSH
Cloud Foundry BOSH is an open source tool chain for release engineering, deployment and lifecycle management of large scale distributed services. -
Request-log-analyzer
Create reports based on your log files. Supports Rails, Apache, MySQL, Delayed::Job, and other formats. -
Rubber
A capistrano/rails plugin that makes it easy to deploy/manage/scale to various service providers, including EC2, DigitalOcean, vSphere, and bare metal servers. -
Einhorn
DISCONTINUED. Einhorn will open one or more shared sockets and run multiple copies of your process. You can seamlessly reload your code, dynamically reconfigure Einhorn, and more. -
itamae
Configuration management tool inspired by Chef, but simpler and lightweight. Formerly known as Lightchef. -
Blender
DISCONTINUED. A modular system orchestration framework with pluggable driver and host discovery.
CodeRabbit: AI Code Reviews for Developers
* Code Quality Rankings and insights are calculated and provided by Lumnify.
They vary from L1 to L5 with "L5" being the highest.
Do you think we are missing an alternative of Kanrisuru or a related project?
README
Kanrisuru manages remote infrastructure with plain ruby objects. The goal with Kanrisuru is to provide a clean objected oriented wrapper over the most commonly used linux commands, with a clean command interface, and with any usable output, present that as parsed structured data. Kanrisuru doesn't use remote agents to run commands on hosts, nor does the project rely on a large complex set of dependencies.
Getting Started
Kanrisuru requires ruby 2.5.0
at a minimum.
Add this line to your application's Gemfile:
gem 'kanrisuru'
And then execute:
$ bundle install
Or install it yourself as:
$ gem install kanrisuru
Documentation
You can find the official documentation https://kanrisuru.com
Usage Guide
Host
To connect with Kanrisuru to a remote host, provide the login credentials to instantiate a Kanrisuru::Remote::Host
instance.
host = Kanrisuru::Remote::Host.new(
host: 'remote-host-name',
username: 'ubuntu',
keys: ['~/.ssh/id_rsa']
)
run a simple echo command on the remote host
host.env['VAR'] = 'world'
result = host.echo('hello $VAR')
result.success?
true
result.to_s
'hello world'
build a custom command
command = Kanrisuru::Command.new('wc')
command << '/home/ubuntu/file1.txt'
host.execute_shell(command)
result = Kanrisuru::Result.new(command) do |cmd|
items = cmd.to_s.split
struct = Kanrisuru::Core::File::FileCount.new
struct.lines = items[0]
struct.words = items[1]
struct.characters = items[2]
struct
end
The Kanrisuru::Result
class will only run the parsing block if the command run on the remote host was succeful. The final line will be used to build the result object to be read easily. This instance will also dynamically add getter methods to read the underlying data struct for easier querying capabiltiies.
result.success?
true
result.lines
8
result.characters
150
result.words
85
Cluster
Kanrisuru can manage multiple hosts at the same time with the Kanrisuru::Remote::Cluster
.
To instantiate a cluster, add 1 or more hosts:
cluster = Kanrisuru::Remote::Cluster.new({
host: 'remote-host-1',
username: 'ubuntu',
keys: ['~/.ssh/remote_1_id_rsa']
}, {
host: 'remote-host-2',
username: 'centos',
keys: ['~/.ssh/remote_2_id_rsa']
}, {
host: 'remote-host-3',
username: 'opensuse',
keys: ['~/.ssh/remote_3_id_rsa']
})
You can also add a host to a cluster that's already been created
host = Kanrisuru::Remote::Host.new(host: 'remote-host-4', username: 'rhel', keys: ['~/.ssh/remote_4_id_rsa'])
cluster << host
Kanrisuru at this point only runs commands sequentially. We plan on creating a parallel run mode in a future release.
To run across all hosts with a single command, cluster will return a array of result hashes
cluster.whoami
[
{
:host => "remote-host-1",
:result => #<Kanrisuru::Result:0x640 @status=0 @data=#<struct Kanrisuru::Core::Path::UserName user="ubuntu"> @command=sudo -u ubuntu /bin/bash -c "whoami">
},
{
:host => "remote-host-2",
:result => #<Kanrisuru::Result:0x700 @status=0 @data=#<struct Kanrisuru::Core::Path::UserName user="centos"> @command=sudo -u centos /bin/bash -c "whoami">
},
{
:host => "remote-host-3",
:result => #<Kanrisuru::Result:0x760 @status=0 @data=#<struct Kanrisuru::Core::Path::UserName user="opensuse"> @command=sudo -u opensuse /bin/bash -c "whoami">
},
{
:host => "remote-host-4",
:result => #<Kanrisuru::Result:0x820 @status=0 @data=#<struct Kanrisuru::Core::Path::UserName user="rhel"> @command=sudo -u rhel /bin/bash -c "whoami">
}
]
You can also access each host individually to run a command conditionaly within an iterable block
cluster.each do |host|
case host.os.release
when 'ubuntu', 'debian'
host.apt('update')
when 'centos', 'redhat', 'fedora'
host.yum('update')
when 'opensuse_leap', 'sles'
host.zypper('update')
end
end
Development
After checking out the repo, run bin/setup
to install dependencies.
To test kanrisuru across various linux distros, update your local /etc/hosts
file to create an alias to the local virtual machine with that distro type. You can also set the host alias to the localhost machine.
To select which hosts to run rspec across, prepend the command line or export the variable while running rspec.
HOSTS=ubuntu,debian,centos rspec
This will run tests on the ubuntu, debian and centos instances.
Then, run rake spec
to run the tests. You can also run bin/console
for an interactive prompt that will allow you to experiment.
To install this gem onto your local machine, run bundle exec rake install
. To release a new version, update the version number in version.rb
, and then run bundle exec rake release
, which will create a git tag for the version, push git commits and tags, and push the .gem
file to rubygems.org.
Contributing
Bug reports and pull requests are welcome on GitHub at https://github.com/avamia/kanrisuru. This project is intended to be a safe, welcoming space for collaboration, and contributors are expected to adhere to the code of conduct.
License
The gem is available as open source under the terms of the MIT License.
Code of Conduct
Everyone interacting in the Kanrisuru project's codebases, issue trackers, chat rooms and mailing lists is expected to follow the code of conduct.
*Note that all licence references and agreements mentioned in the Kanrisuru README section above
are relevant to that project's source code only.