This message was deleted.
# kubernetes
s
This message was deleted.
h
Are you able to kick off the service provisioning in a separate executor in your pulumi program and then just await that at the end? Instead of using
skipAwait
?
i
if you're using typescript, in general you can do things like:
Copy code
const someResourcePromise = getSomeResource().then(r => r).catch(e => console.error(e)) // notice no await
const foo = await getResourceFoo()
const bar = await getResourceBar()
const someResource = await someResourcePromise
const baz = await getResourceBaz(someResource)