Is there a good way to wait for services to be rea...
# kubernetes
a
Is there a good way to wait for services to be ready when they are deployed using
k8s.yaml.ConfigFile
? I tried using dependsOn but that doesnt wait long enough.
g
This is another instance of https://github.com/pulumi/pulumi-kubernetes/issues/861 Currently, you should be able to work around by depending on the Service resource directly.
dependsOn
doesn’t yet work for the top level ComponentResource, but it should work normally for any of the underlying resources.
a
okidok. i ll give that a try