Skip to content

Commit

Permalink
less spec
Browse files Browse the repository at this point in the history
  • Loading branch information
clincha committed Oct 19, 2024
1 parent 0a9d607 commit e9f716e
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions packer/ubuntu2404.pkr.hcl
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ source "proxmox-iso" "ubuntu2404" {

node = "pve"
sockets = 1
cores = 2
cores = 1
memory = 4096

network_adapters {
Expand Down Expand Up @@ -55,7 +55,7 @@ source "proxmox-iso" "ubuntu2404" {

ssh_host = "127.0.0.1"
ssh_port = 2223
ssh_timeout = "1h"
ssh_timeout = "20m"
ssh_username = "ansible"
ssh_password = var.ssh_password

Expand Down
2 changes: 1 addition & 1 deletion vagrant/proxmox-8/Vagrantfile
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ Vagrant.configure("2") do |config|
config.vm.box_version = "1.2.1"
config.vm.provider "virtualbox" do |vb|
vb.memory = "8192"
vb.cpus = "4"
vb.cpus = "2"
vb.customize ["modifyvm", :id, "--nicpromisc1", "allow-all"]
end
config.vm.network "forwarded_port", id: "proxmox_web_gui", host: 8006, guest: 8006, host_ip: "0.0.0.0", guest_ip: "10.0.2.15"
Expand Down

0 comments on commit e9f716e

Please sign in to comment.