We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 6281412 commit 00c0540Copy full SHA for 00c0540
terraform/aio/vm.tf
@@ -89,10 +89,12 @@ resource "null_resource" "kayobe-aio" {
89
# current images, /tmp is noexec, so the path must be changed
90
script_path = "/home/${var.ssh_username}/start.sh"
91
}
92
-
+ # In Caracal, OVN fails on Rocky 9 hosts with hostnames that contain a
93
+ # subdomain (a dot in the name). Required here for the Caracal upgrade Job
94
inline = [
95
"#!/bin/sh",
- "echo 'connected!'"
96
+ "echo 'connected!'",
97
+ "sudo hostnamectl set-hostname $(sed s/.novalocal// /etc/hostname)"
98
]
99
100
0 commit comments