Fix path of synced_folder in Vagrantfile
Vagrantfile is in dev/vagrant directory on repository, so to reach the main directory, it should sync "../.." path instead of "..". Change-Id: I7d142c8239423f5de52de5602a732770bb1d7c6c Closes-Bug: #1504426
This commit is contained in:
parent
6d2bc05325
commit
a48fb29f4d
2
dev/vagrant/Vagrantfile
vendored
2
dev/vagrant/Vagrantfile
vendored
@ -87,7 +87,7 @@ Vagrant.configure(2) do |config|
|
||||
config.vm.define "operator" do |admin|
|
||||
admin.vm.hostname = "operator.local"
|
||||
admin.vm.provision :shell, path: "bootstrap.sh", args: "operator #{MULTINODE ? 'multinode' : 'aio'}"
|
||||
admin.vm.synced_folder "..", "/home/vagrant/kolla", create:"True", type: get_default(:sync_method)
|
||||
admin.vm.synced_folder "../..", "/home/vagrant/kolla", create:"True", type: get_default(:sync_method)
|
||||
admin.vm.synced_folder "storage/operator/", "/data/host", create:"True", type: get_default(:sync_method)
|
||||
admin.vm.synced_folder "storage/shared/", "/data/shared", create:"True", type: get_default(:sync_method)
|
||||
admin.vm.synced_folder ".", get_default(:vagrant_shared_folder), disabled: true
|
||||
|
Loading…
Reference in New Issue
Block a user