This is a Vagrant plugin that adds a Scaleway provider to Vagrant, allowing Vagrant to control and provision machines in Scaleway.
- Boot Scaleway servers.
- SSH into the servers.
- Provision the servers with any built-in Vagrant provisioner.
- Minimal synced folder support via rsync.
Prior to using this plugin, you will first need to create an API token and identify your organization ID. Please see the following help pages for instructions.
Install using standard Vagrant plugin installation methods.
$ vagrant plugin install vagrant-scaleway
First, make a Vagrantfile that looks like the following:
Vagrant.configure('2') do |config|
config.vm.provider :scaleway do |scaleway, override|
scaleway.organization = 'YOUR_ORGANIZATION_UUID'
scaleway.token = 'YOUR_TOKEN'
scaleway.volumes = [
{ id: 'ADDITIONAL_VOLUME_UUID' },
{ size: 50_000_000_000 }
]
override.ssh.private_key_path = '~/.ssh/id_rsa'
end
end
And then run vagrant up
and specify the scaleway
provider:
$ vagrant up --provider=scaleway
Please see the RubyDoc for the list of provider-specific configuration options.
To work on the vagrant-scaleway
plugin, clone this repository out, and use
Bundler to get the dependencies:
$ bundle
If those pass, you're ready to start developing the plugin. You can test
the plugin without installing it into your Vagrant environment by just
creating a Vagrantfile
in the top level of this directory (it is gitignored)
that uses it, and uses bundler to execute Vagrant:
$ bundle exec vagrant up --provider=scaleway
Bug reports and pull requests are welcome on GitHub at https://github.com/kaorimatz/vagrant-scaleway.
The plugin is available as open source under the terms of the MIT License.