This message was deleted.
# typescript
s
This message was deleted.
g
Pulumi automatically waits for k8s resources to be ready, so you shouldn’t have to check the status manually. This thread has an example of depending on resources created as part of a helm chart: https://pulumi-community.slack.com/archives/C84L4E3N1/p1571331362260000
a
@gorgeous-egg-16927 thanks! I give that a whirl. Also do you know is there a better way to debug things like this. Running pulumi up can take a minute or two between changes
g
I’m not sure I completely understand your question, but I think you might be confused about how to use Input/Output types. https://www.pulumi.com/docs/intro/concepts/programming-model/#outputs should help there. In your specific example, you should be able to do something like:
Copy code
deployment.apply(k => { console.log(Object.getOwnPropertyNames(k)) })
The return value of an
apply
is an Output, but it’s unwrapped/resolved within the function inside of
apply()