X-Git-Url: https://git.arvados.org/arvados.git/blobdiff_plain/6911361cec42d4858fb8e345e07bcf14d5e163b6..cb155930046e277e1e90a91dbe9365df95969ca6:/tools/salt-install/Vagrantfile diff --git a/tools/salt-install/Vagrantfile b/tools/salt-install/Vagrantfile index a3463bfc5c..f5759c482d 100644 --- a/tools/salt-install/Vagrantfile +++ b/tools/salt-install/Vagrantfile @@ -13,7 +13,7 @@ Vagrant.configure(VAGRANTFILE_API_VERSION) do |config| # A single_host multiple_hostnames example config.vm.define "arvados-sh-mn" do |arv| - arv.vm.box = "bento/debian-10" + arv.vm.box = "bento/debian-11" arv.vm.hostname = "harpo" # CPU/RAM config.vm.provider :virtualbox do |v| @@ -35,14 +35,18 @@ Vagrant.configure(VAGRANTFILE_API_VERSION) do |config| cp -vr /vagrant/tests /home/vagrant/tests; sed 's#cluster_fixme_or_this_wont_work#harpo#g; s#domain_fixme_or_this_wont_work#local#g; - s/#\ BRANCH=\"main\"/\ BRANCH=\"main\"/g; - s#CONTROLLER_EXT_SSL_PORT=443#CONTROLLER_EXT_SSL_PORT=8443#g' \ + s#CONTROLLER_EXT_SSL_PORT=443#CONTROLLER_EXT_SSL_PORT=8443#g; + s#RELEASE=\"production\"#RELEASE=\"development\"#g; + s/# VERSION=.*$/VERSION=\"latest\"/g; + s/#\ BRANCH=\"main\"/\ BRANCH=\"main\"/g' \ /vagrant/local.params.example.single_host_multiple_hostnames > /tmp/local.params.single_host_multiple_hostnames" + arv.vm.provision "shell", path: "provision.sh", args: [ # "--debug", "--config /tmp/local.params.single_host_multiple_hostnames", + "--development", "--test", "--vagrant" ].join(" ")