Skip to content
Snippets Groups Projects
Commit 0f5c22c1 authored by Jenkins's avatar Jenkins Committed by Gerrit Code Review
Browse files

Merge "Make Vagrant libvirt graphics_ip configurable"

parents 75ce1e44 558b900e
No related branches found
No related tags found
No related merge requests found
......@@ -19,6 +19,10 @@ PROVIDER ||= "libvirt"
# Either centos or ubuntu
DISTRO ||= "centos"
# The libvirt graphics_ip used for each guest. Only applies if PROVIDER
# is libvirt.
GRAPHICSIP ||= "127.0.0.1"
PROVIDER_DEFAULTS ||= {
libvirt: {
centos: {
......@@ -163,6 +167,9 @@ Vagrant.configure(2) do |config|
vm.memory = MULTINODE ? get_setting(:operator, :memory) : get_setting(:aio, :memory)
vm.cpus = MULTINODE ? get_setting(:operator, :cpus) : get_setting(:aio, :cpus)
end
admin.vm.provider "libvirt" do |vm|
vm.graphics_ip = GRAPHICSIP
end
admin.hostmanager.aliases = "operator"
end
......@@ -180,6 +187,9 @@ Vagrant.configure(2) do |config|
vm.memory = get_setting(node_type.to_sym, :memory)
vm.cpus = get_setting(node_type.to_sym, :cpus)
end
node.vm.provider "libvirt" do |vm|
vm.graphics_ip = GRAPHICSIP
end
node.hostmanager.aliases = hostname
end
end
......
......@@ -12,6 +12,10 @@
# Either centos or ubuntu
# DISTRO = "centos"
# The libvirt graphics_ip used for each guest. Only applies if PROVIDER
# is libvirt.
# GRAPHICSIP = "127.0.0.1"
# PROVIDER_DEFAULTS = {
# libvirt: {
# centos: {
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment