Skip to content

Commit

Permalink
upi/vsphere: Update README.md and example tfvars
Browse files Browse the repository at this point in the history
This reflects recent changes
  • Loading branch information
LorbusChris committed Apr 22, 2020
1 parent dd8e721 commit 48b2c89
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 15 deletions.
3 changes: 0 additions & 3 deletions upi/vsphere/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -36,9 +36,6 @@ There is an example terraform.tfvars file in this directory named terraform.tfva
* vsphere_user
* vsphere_password
* ipam_token
* bootstrap_ignition_url
* control_plane_ignition
* compute_ignition
The bootstrap ignition config must be placed in a location that will be accessible by the bootstrap machine. For example, you could store the bootstrap ignition config in a gist.

4. Run `terraform init`.
Expand Down
17 changes: 5 additions & 12 deletions upi/vsphere/terraform.tfvars.example
Original file line number Diff line number Diff line change
Expand Up @@ -38,18 +38,11 @@ control_plane_count = 3
// The number of compute VMs to create. Default is 3.
compute_count = 3

// URL of the bootstrap ignition. This needs to be publicly accessible so that the bootstrap machine can pull the ignition.
bootstrap_ignition_url = "URL_FOR_YOUR_BOOTSTRAP_IGNITION"

// Ignition config for the control plane machines. You should copy the contents of the master.ign generated by the installer.
control_plane_ignition = <<END_OF_MASTER_IGNITION
Copy the master ignition generated by the installer here.
END_OF_MASTER_IGNITION

// Ignition config for the compute machines. You should copy the contents of the worker.ign generated by the installer.
compute_ignition = <<END_OF_WORKER_IGNITION
Copy the worker ignition generated by the installer here.
END_OF_WORKER_IGNITION
// Ignition config path for the control plane machines
control_plane_ignition_path = "./master.ign"

// Ignition config path for the compute machines
compute_ignition_path = "./worker.ign"


// Set ipam and ipam_token if you want to use the IPAM server to reserve IP
Expand Down

0 comments on commit 48b2c89

Please sign in to comment.