Skip to content

Commit

Permalink
Reduce RAM requirements
Browse files Browse the repository at this point in the history
Signed-off-by: Victor Morales <v.morales@samsung.com>
  • Loading branch information
electrocucaracha committed Jun 21, 2023
1 parent f34a895 commit a48431f
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion .devcontainer.json
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
},
"hostRequirements": {
"cpus": 8,
"memory": "32gb"
"memory": "16gb"
},
"postCreateCommand": "cd e2e/provision/; ./install_sandbox.sh | tee ~/install_sandbox.log",
"forwardPorts": [7007, 3000]
Expand Down
2 changes: 1 addition & 1 deletion e2e/provision/Vagrantfile
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,7 @@ Vagrant.configure('2') do |config|
%i[virtualbox libvirt].each do |provider|
config.vm.provider provider do |p|
p.cpus = ENV['CPUS'] || 8
p.memory = ENV['MEMORY'] || 32 * 1024
p.memory = ENV['MEMORY'] || 16 * 1024
end
end

Expand Down
2 changes: 1 addition & 1 deletion e2e/provision/nephio.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ all:
host_os: "linux" # use "darwin" for MacOS X, "windows" for Windows
host_arch: "amd64" # other possible values: "386","arm64","arm","ppc64le","s390x"
host_min_vcpu: 8 # minimum required vCPUs before install
host_min_cpu_ram: 16 # minimum required CPU RAM before install; value in GB
host_min_cpu_ram: 8 # minimum required CPU RAM before install; value in GB
host_min_root_disk_space: 50 # minimum required disk space before install; value in GB
tmp_directory: "/tmp"
bin_directory: "/usr/local/bin"
Expand Down
2 changes: 1 addition & 1 deletion e2e/provision/playbooks/roles/bootstrap/defaults/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
##############################################################################

host_min_vcpu: 8 # minimum required vCPUs before install
host_min_cpu_ram: 16 # minimum required CPU RAM before install; value in GB
host_min_cpu_ram: 8 # minimum required CPU RAM before install; value in GB
host_min_root_disk_space: 50 # minimum required disk space before install; value in GB

container_engine: docker
Expand Down

0 comments on commit a48431f

Please sign in to comment.