Skip to content
Closed
Show file tree
Hide file tree
Changes from 3 commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion terraform/vsphere/main.tf
Original file line number Diff line number Diff line change
Expand Up @@ -126,7 +126,7 @@ resource "vsphere_virtual_machine" "node" {

disk {
label = "disk0"
size = 51
size = 128
}

connection {
Expand Down
6 changes: 3 additions & 3 deletions vsphere-build/vsphere-build.sh
Copy link
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

can you revert your changes here so I can approve the Pull Request?

Original file line number Diff line number Diff line change
Expand Up @@ -59,9 +59,9 @@ cat <<EOF >./tmp/vsphere-rocky.json
"vsphere-folder": "$vsphere_template_dir",
"vm-name": "pxdeploy-template-build",
"pxd-templateid": "$PXDTEMPLATEID",
"vm-cpu-num": "4",
"vm-mem-size": "8192",
"vm-disk-size": "52000",
"vm-cpu-num": "$vsphere_cpu",
"vm-mem-size": "$vsphere_memory",
"vm-disk-size": "$vsphere_disks",
"iso_url": "https://dl.rockylinux.org/vault/rocky/9.5/isos/x86_64/Rocky-9.5-x86_64-minimal.iso",
"kickstart_file": "/vsphere-ks.cfg"
},
Expand Down