Vagrant.configure("2") do |config|
config.vm.define 'jenkins' do |config|
config.vm.hostname = 'jenkins'
config.vm.box = "bento/ubuntu-20.04"
config.vm.synced_folder '.', '/home/vagrant/hws'
config.vm.network :private_network, ip: '192.168.2.74'
config.vm.provider "virtualbox" do |vb|
vb.linked_clone = true
vb.memory = 4096
vb.cpus = 2
end
config.vm.provision "shell", path: "setup.sh"
end
end
| # | Change | User | Description | Committed | |
|---|---|---|---|---|---|
| #8 | 27183 | Jen Bottom | Copy up changes to Jenkins and P4Jenkins setup script | ||
| #7 | 26045 | Jen Bottom | Copy up from dev to main | ||
| #6 | 26043 | Jen Bottom | Copy up from dev to main | ||
| #5 | 26037 | Jen Bottom | Copy up from dev to main | ||
| #4 | 22121 | Jen Bottom | Deleting some Vagrant machines I do not need for now | ||
| #3 | 21428 | Jen Bottom | Making some changes to the Vagrantfile and bash script | ||
| #2 | 21427 | Jen Bottom | Fixing an error in the vagrant file | ||
| #1 | 21426 | Jen Bottom |
Working on getting a VM with Jenkins and the Perforce Plugin set up. Currently bassing this off of a GitHub repo, using Ansible for the provissioning |