Merge pull request #88 from lisongmin/fix-can-not-running-test-in-vagrant

Ability to running test via vagrant-libvirt and fix can not run test via 'sudo make test'
This commit is contained in:
Shishir 2021-05-02 13:39:48 -07:00 committed by GitHub
commit c9b0383859
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
3 changed files with 16 additions and 2 deletions

1
.gitignore vendored
View File

@ -1 +1,2 @@
.vagrant/
/containerd-driver

View File

@ -239,7 +239,7 @@ You can also read more about `network stanza` in the [`nomad official documentat
Nomad schedules workloads of various types across a cluster of generic hosts. Because of this, placement is not known in advance and you will need to use service discovery to connect tasks to other services deployed across your cluster. Nomad integrates with Consul to provide service discovery and monitoring.
A [`service`](https://www.nomadproject.io/docs/job-specification/service) stanza can be added to your job spec, to enable service discovery.
A [`service`](https://www.nomadproject.io/docs/job-specification/service) stanza can be added to your job spec, to enable service discovery.
The service stanza instructs Nomad to register a service with Consul.
@ -256,10 +256,17 @@ $ sudo make test
It is highly recommended to run these tests either as part of a CI/CD system e.g. circleci or on
a immutable infrastructure e.g vagrant VMs.
You can also run an individual test by specifying the test name. e.g.
```
$ cd tests
$ sudo ./run_tests.sh 001-test-redis.sh
```
## Cleanup
```
make clean
```
```
This will delete your binary: `containerd-driver`
```

6
Vagrantfile vendored
View File

@ -6,6 +6,10 @@ VAGRANTFILE_API_VERSION = "2"
Vagrant.configure("2") do |config|
config.vm.define "containerd-linux"
config.vm.box = "hashicorp/bionic64"
config.vm.provider "libvirt" do |v, override|
override.vm.box = "generic/debian10"
override.vm.synced_folder ".", "/home/vagrant/go/src/github.com/Roblox/nomad-driver-containerd", type: "nfs", nfs_version: 4, nfs_udp: false
end
config.vm.synced_folder ".", "/home/vagrant/go/src/github.com/Roblox/nomad-driver-containerd"
config.ssh.extra_args = ["-t", "cd /home/vagrant/go/src/github.com/Roblox/nomad-driver-containerd; bash --login"]
config.vm.network "forwarded_port", guest: 4646, host: 4646, host_ip: "127.0.0.1"
@ -20,6 +24,8 @@ Vagrant.configure("2") do |config|
echo "export GOPATH=/home/vagrant/go" >> /home/vagrant/.bashrc
echo "export PATH=$PATH:/usr/local/go/bin" >> /home/vagrant/.bashrc
source /home/vagrant/.bashrc
# without keeping HOME env, 'sudo make test' will try to find files under /root/go/
echo "Defaults env_keep += HOME" | sudo tee /etc/sudoers.d/keep_home
# Install golang-1.14.3
if [ ! -f "/usr/local/go/bin/go" ]; then