icy-jordan-58549
06/25/2020, 4:19 PMPreview failed: resource operator/kafka-bootstrap-lb does not exist
.
export const kafkaService = k8s.core.v1.Service.get(
"kafkaLB",
"operator/kafka-bootstrap-lb"
);
const kafkaRecord = new azure.dns.ARecord(
"kafka",
{
name: "kafka",
zoneName: zone.name,
resourceGroupName: config.resourceGroup.name,
ttl: 60,
records: [kafkaService.status.loadBalancer.ingress[0].ip],
},
{
dependsOn: kafkaService,
}
);
Service operator/kafka-bootstrap-lb
isn’t presented in resources (helm), due to operator that deploys this later and looks like pulumi
doesn’t wait for that service.gorgeous-egg-16927
06/25/2020, 8:39 PMService.get
.
I thought we had an issue open for retrying within .get
calls, but I can’t find it now. I’ll open one to track that, since this is something Pulumi should be able to handle natively.icy-jordan-58549
06/25/2020, 9:15 PMgorgeous-egg-16927
06/25/2020, 9:20 PMicy-jordan-58549
06/25/2020, 11:10 PM