EOX GitLab Instance
Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
Builder
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Deploy
Releases
Model registry
Monitor
Incidents
Service Desk
Analyze
Value stream analytics
Contributor analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Terms and privacy
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Vagrant
Builder
Commits
2e982fc9
Commit
2e982fc9
authored
11 years ago
by
Stephan
Browse files
Options
Downloads
Patches
Plain Diff
Adding virtualbox configuration.
parent
99eb9435
No related branches found
No related tags found
1 merge request
!11
Virtualbox
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
.gitignore
+2
-2
2 additions, 2 deletions
.gitignore
Vagrantfile
+13
-2
13 additions, 2 deletions
Vagrantfile
with
15 additions
and
4 deletions
.gitignore
+
2
−
2
View file @
2e982fc9
.vagrant
.vagrant
*
build/RPMS
build/RPMS
build/SOURCES
build/SOURCES
build/SPECS
build/SPECS
build/SRPMS
build/SRPMS
\ No newline at end of file
This diff is collapsed.
Click to expand it.
Vagrantfile
+
13
−
2
View file @
2e982fc9
...
@@ -22,6 +22,8 @@ Vagrant.configure("2") do |config|
...
@@ -22,6 +22,8 @@ Vagrant.configure("2") do |config|
# doesn't already exist on the user's system.
# doesn't already exist on the user's system.
config
.
vm
.
box_url
=
"http://downloads.eox.at/boxes/centos64.box"
config
.
vm
.
box_url
=
"http://downloads.eox.at/boxes/centos64.box"
config
.
vm
.
hostname
=
"builder-rpm-vagrant"
# Create a forwarded port mapping which allows access to a specific port
# Create a forwarded port mapping which allows access to a specific port
# within the machine from a port on the host machine. In the example below,
# within the machine from a port on the host machine. In the example below,
# accessing "localhost:8080" will access port 80 on the guest machine.
# accessing "localhost:8080" will access port 80 on the guest machine.
...
@@ -50,8 +52,17 @@ Vagrant.configure("2") do |config|
...
@@ -50,8 +52,17 @@ Vagrant.configure("2") do |config|
# backing providers for Vagrant. These expose provider-specific options.
# backing providers for Vagrant. These expose provider-specific options.
# View the documentation for the provider you're using for more
# View the documentation for the provider you're using for more
# information on available options.
# information on available options.
config
.
vm
.
provider
:virtualbox
do
|
vb
|
config
.
vm
.
provider
"virtualbox"
do
|
v
|
vb
.
customize
[
"modifyvm"
,
:id
,
"--memory"
,
1024
]
# Custom name
v
.
name
=
"builder_rpm"
# Increase memory and cpus
v
.
customize
[
"modifyvm"
,
:id
,
"--memory"
,
1024
,
"--cpus"
,
2
]
# Increase performance i.e. don't use swap extensively
v
.
customize
[
"modifyvm"
,
:id
,
"--ioapic"
,
"on"
,
"--largepages"
,
"off"
,
"--vtxvpid"
,
"off"
]
# Use GUI for debugging purposes
#v.gui = true
end
end
# Enable provisioning with Puppet stand alone. Puppet manifests
# Enable provisioning with Puppet stand alone. Puppet manifests
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment