Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 5 additions & 0 deletions test/e2e/quick_start_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -121,6 +121,7 @@ var _ = Describe("Quick start", func() {
Expect(err).ToNot(HaveOccurred())
DeferCleanup(unreserveControlPlaneEndpointIP)
testE2EConfig.Variables["CONTROL_PLANE_ENDPOINT_IP"] = controlPlaneEndpointIP
Logf("Reserved control-plane endpoint IP: %s", controlPlaneEndpointIP)

By(
"Reserving an IP address for the workload cluster kubernetes Service load balancer",
Expand All @@ -133,6 +134,10 @@ var _ = Describe("Quick start", func() {
Expect(err).ToNot(HaveOccurred())
DeferCleanup(unreservekubernetesServiceLoadBalancerIP)
testE2EConfig.Variables["KUBERNETES_SERVICE_LOAD_BALANCER_IP"] = kubernetesServiceLoadBalancerIP
Logf(
"Reserved service load balancer IP: %s",
kubernetesServiceLoadBalancerIP,
)
}

clusterLocalTempDir, err := os.MkdirTemp("", "clusterctl-")
Expand Down
Loading