From 429a947cb9410a63ee9e236d37478f77b6859950 Mon Sep 17 00:00:00 2001 From: "martin.cholewa" Date: Thu, 28 Aug 2025 10:53:41 +0200 Subject: [PATCH] tested paralels vm --- .vagrant/machines/node01/parallels/action_set_name | 2 +- Vagrantfile | 7 +++++-- 2 files changed, 6 insertions(+), 3 deletions(-) diff --git a/.vagrant/machines/node01/parallels/action_set_name b/.vagrant/machines/node01/parallels/action_set_name index d8517d0..16f27ae 100644 --- a/.vagrant/machines/node01/parallels/action_set_name +++ b/.vagrant/machines/node01/parallels/action_set_name @@ -1 +1 @@ -1756366282 \ No newline at end of file +1756367186 \ No newline at end of file diff --git a/Vagrantfile b/Vagrantfile index 6834be8..9ea0623 100644 --- a/Vagrantfile +++ b/Vagrantfile @@ -2,7 +2,10 @@ Vagrant.configure("2") do |config| config.vm.define "node01" do |node| node.vm.box = "bento/ubuntu-22.04" node.vm.provider "parallels" do |prl| - prl.name = "node01" + prl.name = "node01" # Set the visible name of the VM in Parallels + prl.memory = 4096 # Allocate 4 GB of RAM (in MB) + prl.cpus = 4 # Allocate 4 CPU cores + prl.check_guest_tools = true # Enable automatic checking/updating of Parallels Tools in the guest end end -end \ No newline at end of file +end