vsphere-k8s/README.md

14 lines
702 B
Markdown
Raw Normal View History

2022-12-02 21:32:50 +00:00
# Vanilla Kubernetes on VMware vSphere
## Packer
1. `cd packer`.
2. Copy `linux-server.example.pkrvars.hcl` to `linux-server.auto.pkrvars.hcl` and update it as appropriate for your environment.
2. Put the SSH private key which corresponds to the `build_key` variable in `packer_cache/ssh_private_key_packer.pem`.
2022-12-02 23:04:00 +00:00
3. Place any needed internal CA PEM-formatted certs (with `.cer` file extension) in `certs/`.
4. Run it with `packer build -on-error=abort -force .`.
2022-12-02 21:32:50 +00:00
## Terraform
1. `cd terraform`.
2. Copy `terraform.example.tfvars` to `terraform.auto.tfvars` and update it as appropriate for your environment.
2022-12-02 23:04:00 +00:00
3. Initialize Terraform: `terraform init`.
3. Create the deployment with `terraform apply`.