Skip to content

Commit 133c5a0

Browse files
committed
OCPBUGS-33709: GCP mixup when using the ignition shim vs the signed url
** Ignition was being given the signed url, but the url does not point to ignition data that contains the proxy information. The ignition shim contains the url and should be supplied as metadata to the bootstrap node. The shim will contain the url as well as proxy data, and the url will point to the bucket that contains the actual ignition bootstrap data.
1 parent e6b59d5 commit 133c5a0

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

data/data/gcp/bootstrap/main.tf

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -118,7 +118,7 @@ resource "google_compute_instance" "bootstrap" {
118118
}
119119

120120
metadata = {
121-
user-data = data.ignition_config.redirect.rendered
121+
user-data = var.gcp_ignition_shim
122122
}
123123

124124
tags = ["${var.cluster_id}-master", "${var.cluster_id}-bootstrap"]

0 commit comments

Comments
 (0)