From 4c2ed458a342212cf8155357fcd7bf89ce60772a Mon Sep 17 00:00:00 2001 From: Joseph Palermo Date: Thu, 23 Jan 2025 21:42:47 -0800 Subject: [PATCH] Run bats in gcp with ephemeral external ip addresses turned on With the latest stemcell, when this is off we started seeing errors in syslog during a VM reboot like: google-guest-agent.service: State stop-sigterm timed out and the VM would hang for 10 minutes during the reboot. --- ci/bats/iaas/gcp/prepare-bats-config.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/ci/bats/iaas/gcp/prepare-bats-config.sh b/ci/bats/iaas/gcp/prepare-bats-config.sh index b102af06575..2a44a11fd28 100755 --- a/ci/bats/iaas/gcp/prepare-bats-config.sh +++ b/ci/bats/iaas/gcp/prepare-bats-config.sh @@ -66,7 +66,7 @@ properties: cloud_properties: network_name: "$(terraform_output "network")" subnetwork_name: "$(terraform_output "subnetwork")" - ephemeral_external_ip: false + ephemeral_external_ip: true tags: ["bosh-director"] dns: [8.8.8.8] - name: second @@ -80,7 +80,7 @@ properties: cloud_properties: network_name: "$(terraform_output "network")" subnetwork_name: "$(terraform_output "second_subnetwork")" - ephemeral_external_ip: false + ephemeral_external_ip: true tags: ["bosh-director"] dns: [8.8.8.8] EOF