Skip to content

Commit

Permalink
memory fix
Browse files Browse the repository at this point in the history
  • Loading branch information
gardart committed Nov 19, 2021
1 parent 6eede07 commit f36a335
Show file tree
Hide file tree
Showing 5 changed files with 12 additions and 25 deletions.
2 changes: 1 addition & 1 deletion default.config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ ipaserver_domain: '{{ ipa_domain }}'
ipaserver_realm: '{{ ipa_realm }}'
ipaserver_setup_dns: yes
ipareplica_setup_dns: yes
ipareplica_setup_ca: yes
ipareplica_setup_ca: no
ipaserver_auto_forwarders: yes
ipareplica_auto_forwarders: yes
#ipaserver_ipatrust_range_type: ipa-ad-trust-posix
Expand Down
6 changes: 3 additions & 3 deletions provisioning/ipacluster/Vagrantfile
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ Vagrant.configure(VAGRANTFILE_API_VERSION) do |config|
config.ssh.insert_key = false

config.vm.provider :virtualbox do |v|
v.memory = 1024
v.memory = 2048
v.cpus = 2
v.customize ["modifyvm", :id, "--natdnshostresolver1", "on"]
v.customize ["modifyvm", :id, "--ioapic", "on"]
Expand All @@ -28,7 +28,7 @@ Vagrant.configure(VAGRANTFILE_API_VERSION) do |config|
rep.vm.network :private_network, ip: "192.168.68.12"

rep.vm.provider :virtualbox do |v|
v.memory = 1024
v.memory = 2048
v.cpus = 2
end

Expand All @@ -40,4 +40,4 @@ Vagrant.configure(VAGRANTFILE_API_VERSION) do |config|
cli.vm.network :private_network, ip: "192.168.68.13"
end

end
end
5 changes: 3 additions & 2 deletions provisioning/ipareplica/Vagrantfile
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,8 @@ N = settings['numberof_ipa_replicas']
(1..N).each do |machine_id|

config.vm.provider :virtualbox do |v|
v.memory = 1024
v.gui = false
v.memory = 2048
end

config.vm.define "replica#{machine_id}" do |machine|
Expand All @@ -25,4 +26,4 @@ N = settings['numberof_ipa_replicas']
end
end
end
end
end
18 changes: 0 additions & 18 deletions provisioning/ipareplica/Vagrantfile.disabled

This file was deleted.

6 changes: 5 additions & 1 deletion provisioning/ipaserver/Vagrantfile
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,10 @@ require 'yaml'
settings = YAML.load_file '../../default.config.yml'
fqdn = settings['ipa_server_name'] + "." + settings['ipa_domain']
Vagrant.configure("2") do |config|
config.vm.provider :virtualbox do |v|
v.gui = false
v.memory = 2048
end
config.vm.define "ipaserver" do |config|
config.vm.box = "geerlingguy/centos8"
config.vm.hostname = fqdn
Expand All @@ -16,4 +20,4 @@ Vagrant.configure("2") do |config|
ansible.become = true
end
end
end
end

0 comments on commit f36a335

Please sign in to comment.