https://pulumi.com logo
#general
Title
# general
r

ripe-greece-78043

07/18/2022, 8:58 AM
Hello, dears. I spend hours to find a solution to my problem. I have a difficult pipeline. Pulumi installs a pod. The pod generates a YAML. Then metacontroller (a tool that makes kubectl apply -f …) applies this YAML. As result, after a couple of minutes, I have a lot of new k8s services (svc) that Pulumi doesn’t know. How after that I can fetch all kubernetes services (kubectl get svc). I expect something like
let services = pulumi.k8s.services.get()
😪
b

billowy-army-68599

07/18/2022, 2:39 PM
this is expected behaviour. if something out of band from Pulumi creates resources, you’ll need to get them into the state
2 Views