diff options
| author | terminaldweller <thabogre@gmail.com> | 2023-01-04 13:10:14 +0000 | 
|---|---|---|
| committer | terminaldweller <thabogre@gmail.com> | 2023-01-04 13:10:14 +0000 | 
| commit | 740368995507e0b47c381eadc9a4173cc56a6055 (patch) | |
| tree | 10e316b50df2c85c5ea4ddc2a29a7b66bf481f69 | |
| parent | update (diff) | |
| download | vagrantboxes-740368995507e0b47c381eadc9a4173cc56a6055.tar.gz vagrantboxes-740368995507e0b47c381eadc9a4173cc56a6055.zip | |
ephemeral
Diffstat (limited to '')
| -rw-r--r-- | ephemeral/Vagrantfile | 52 | ||||
| -rw-r--r-- | tiny/Vagrantfile | 2 | 
2 files changed, 53 insertions, 1 deletions
| diff --git a/ephemeral/Vagrantfile b/ephemeral/Vagrantfile new file mode 100644 index 0000000..a196506 --- /dev/null +++ b/ephemeral/Vagrantfile @@ -0,0 +1,52 @@ +# vi: set ft=ruby : +# frozen_string_literal: true + +ENV['VAGRANT_DEFAULT_PROVIDER'] = 'libvirt' +# Vagrant::DEFAULT_SERVER_URL.replace('https://vagrantcloud.com') +Vagrant.require_version '>= 2.2.6' +Vagrant.configure('2') do |config| +  config.vm.box = 'generic/alpine316' +  config.vm.box_version = '4.0.2' +  config.vm.box_check_update = false +  config.vm.hostname = 'virt-ephemeral' + +  if Vagrant.has_plugin?('vagrant-proxyconf') +    config.proxy.http = 'socks5://192.168.1.103:9995' +    config.proxy.https = 'socks5://192.168.1.103:9995' +  end + +  # ssh +  config.ssh.insert_key = true +  config.ssh.keep_alive = true +  config.ssh.keys_only = true + +  # timeouts +  config.vm.boot_timeout = 300 +  config.vm.graceful_halt_timeout = 60 +  config.ssh.connect_timeout = 15 + +  # shares +  config.vm.synced_folder '.', '/vagrant', type: 'nfs', nfs_version: 4, nfs_udp: false + +  config.vagrant.plugins = ['vagrant-reload', { 'vagrant-libvirt' => { 'version' => '^0.6.2' } }] + +  config.vm.provider 'libvirt' do |libvirt| +    libvirt.storage_pool_name = 'ramdisk' +    libvirt.default_prefix = 'ephemeral-' +    libvirt.driver = 'kvm' +    libvirt.memory = '128' +    libvirt.cpus = 1 +    libvirt.sound_type = nil +    libvirt.qemuargs value: '-nographic' +    libvirt.qemuargs value: '-nodefaults' +    libvirt.qemuargs value: '-no-user-config' +    libvirt.qemuargs value: '-serial' +    libvirt.qemuargs value: 'telnet::5323,server,nowait' +    libvirt.random model: 'random' +  end + +  # config.vm.provision 'update-upgrade', type: 'shell', name: 'update-upgrade', inline: <<-SHELL +  #   sudo apk update && sudo apk upgrade +  #   sudo apk add torsocks irssi tmux +  # SHELL +end diff --git a/tiny/Vagrantfile b/tiny/Vagrantfile index c3e1168..cc39273 100644 --- a/tiny/Vagrantfile +++ b/tiny/Vagrantfile @@ -26,7 +26,7 @@ Vagrant.configure('2') do |config|    config.ssh.connect_timeout = 15    # shares -  # config.vm.synced_folder '.', '/vagrant', type: 'nfs', nfs_version: 4, nfs_udp: false +  config.vm.synced_folder '.', '/vagrant', type: 'nfs', nfs_version: 4, nfs_udp: false    config.vagrant.plugins = ['vagrant-reload', { 'vagrant-libvirt' => { 'version' => '^0.6.2' } }] | 
