khanh-ph / khanhph-utterances

A dedicated repo for storing and managing user comments on khanhph.com using Utterances comment system.
0 stars 0 forks source link

install-proxmox-kubernetes/ #1

Open utterances-bot opened 11 months ago

utterances-bot commented 11 months ago

Creating a Kubernetes cluster on Proxmox VE with Terraform & Kubespray

I'll show you how to create your own home-lab Kubernetes cluster on Proxmox using Terraform and Kubespray.

https://www.khanhph.com/install-proxmox-kubernetes/

cleitonpena commented 8 months ago

Hello @khanh-ph Everything is OK after the terraform plan. When I run terraform apply, it returns this error:

Error: 400 Parameter verification failed. │ │ with module.k8s_worker_nodes.proxmox_vm_qemu.ubuntu_vm[2], │ on modules/proxmox_ubuntu_vm/main.tf line 12, in resource "proxmox_vm_qemu" "ubuntu_vm": │ 12: resource "proxmox_vm_qemu" "ubuntu_vm" {

Line 12 of main.tf is:

resource "proxmox_vm_qemu" "ubuntu_vm" {

What could be happening? What do you suggest to correct this error? Thank you for your blog. Congratulations.

khanh-ph commented 8 months ago

Hi Claiton Campos, Would you mind sharing your plan output?

cleitonpena commented 8 months ago

Hello @khanh-ph I wanted to complement my previous comment to emphasize that you are to be congratulated for the so smooth and optimistic way that describes your DevOps engineer experiences. It's something unusual in this area. Congratulations All the best and even greater success in your career. Merry Christmas 🎄

khanh-ph commented 8 months ago

The '400 Parameter verification failed' issue, originally caused by pm_host being specified as an IP address, has been addressed by fixing the value to a hostname. See https://github.com/khanh-ph/proxmox-kubernetes/issues/91

khanh-ph commented 7 months ago

@jonasbenavides82 It can be accomplished using a reverse proxy. In my lab environment, I've installed an Nginx Proxy Manager LXC and connected it to both networks.

ivziete commented 6 months ago

Hello i have the problem, did you ever see him?

│ Error: Plugin did not respond │ │ with module.k8s_worker_nodes.proxmox_vm_qemu.ubuntu_vm[1], │ on modules/proxmox_ubuntu_vm/main.tf line 12, in resource "proxmox_vm_qemu" "ubuntu_vm": │ 12: resource "proxmox_vm_qemu" "ubuntu_vm" { │ │ The plugin encountered an error, and failed to respond to the plugin.(*GRPCProvider).ApplyResourceChange call. The plugin logs may contain more details. ╵

Stack trace from the terraform-provider-proxmox_v2.9.14 plugin:

panic: interface conversion: interface {} is string, not float64

Thank you for your blog. Congratulations.

knag08 commented 6 months ago

Executing -> terraform plan -var-file="example.tfvars".

gets me the below output

var.vm_os_disk_storage Default storage pool where OS VM disk is placed

Enter a value: ----> ????

Planning failed. Terraform encountered an error while generating this plan. ╷ │ Error: user terraform-prov@pve has valid credentials but cannot retrieve user list, check privilege separation of api token │ │ with provider["registry.terraform.io/telmate/proxmox"], │ on providers.tf line 16, in provider "proxmox": │ 16: provider "proxmox" {

knag08 commented 6 months ago

Possible Dumb questions

  1. ar.vm_os_disk_storage Default storage pool where OS VM disk is placed

Enter a value: What should be the value ? And what is the default value that it will take

  1. Am I supposed to base64 encode these Keys ? ~/proxmox-kubernetes/ssh-keys/id_rsa.pub and id_rsa ?
knag08 commented 6 months ago

Says Creating for a long time.. No nodes shows Up ?!

After fixing with assumptions - ar.vm_os_disk_storage = local-lvm (which exists for) and 2. using those base64 encoded pub and private keys.

The below verbose happens for a long time without actually creating VMs/Nodes and switch any tab on Proxmox will terminate/close this connection and the task!

module.k8s_worker_nodes.proxmox_vm_qemu.ubuntu_vm[1]: Still creating...

khanh-ph commented 6 months ago

Hello i have the problem, did you ever see him?

│ Error: Plugin did not respond │ │ with module.k8s_worker_nodes.proxmox_vm_qemu.ubuntu_vm[1], │ on modules/proxmox_ubuntu_vm/main.tf line 12, in resource "proxmox_vm_qemu" "ubuntu_vm": │ 12: resource "proxmox_vm_qemu" "ubuntu_vm" { │ │ The plugin encountered an error, and failed to respond to the plugin.(*GRPCProvider).ApplyResourceChange call. The plugin logs may contain more details. ╵

Stack trace from the terraform-provider-proxmox_v2.9.14 plugin:

panic: interface conversion: interface {} is string, not float64

Thank you for your blog. Congratulations.

Hello @ivziete, If you are using Proxmox VE >= 8.1, please note that my project doesn't yet support it.

khanh-ph commented 6 months ago

Says Creating for a long time.. No nodes shows Up ?!

After fixing with assumptions - ar.vm_os_disk_storage = local-lvm (which exists for) and 2. using those base64 encoded pub and private keys.

The below verbose happens for a long time without actually creating VMs/Nodes and switch any tab on Proxmox will terminate/close this connection and the task!

module.k8s_worker_nodes.proxmox_vm_qemu.ubuntu_vm[1]: Still creating...

Hi @knag08, May I ask for your Proxmox VE and Terraform version? Also, it would be helpful to know the actual values of all your variables. Could you email me your example.tfvars file?

oreze commented 2 months ago

Hi! I've upgraded your repo and added support to proxmox 8.x, fixed a few issues by the way. If someone want to take a look check this PR, feel free to use it. If something's wrong, just contact me on Github.

https://github.com/khanh-ph/proxmox-kubernetes/pull/94 https://github.com/khanh-ph/proxmox-scripts/pull/13

roberthumphrey commented 1 month ago

@oreze This PR helped me out quite a bit.

khanh-ph commented 1 month ago

@oreze I haven't had time to work on this yet. Thank you for your contribution. I will look into it and update my repo as soon as I can.

khanh-ph commented 2 weeks ago

Proxmox VE 8.2 is now supported. Thanks to @oreze for the contributions.