This commit is contained in:
root
2026-02-27 17:19:30 +00:00
parent 1bc09423fc
commit 51c68369c6

View File

@@ -193,7 +193,7 @@ resource "proxmox_virtual_environment_vm" "flatcar_template" {
}
boot_order = ["scsi0", "ide2"]
boot_order = ["virtio0", "ide2"]
lifecycle {
ignore_changes = [boot_order]
@@ -213,7 +213,7 @@ resource "null_resource" "wait_for_cp1_api" {
set -euo pipefail
deadline=$((SECONDS + 1800)) # 30 min
echo "Waiting for Kubernetes API on $CP1_IP:6443 ..."
echo "Waiting for Kubernetes API on $CP1:6443 ..."
until curl -kfsS "https://$CP1:6443/healthz" | grep -qx "ok"; do
if [ $SECONDS -ge $deadline ]; then