what is the best way in pulumi to fetch a pod spec...
# general
s
what is the best way in pulumi to fetch a pod spec (service account) that was setup with helm chart, don’t see any way to actively fetch resources
c
@stocky-sundown-45608 this is a good question to ask in #kubernetes from my experience I've not managed to achieve this. It comes up a lot with EKS and IRSA. Instead, I pre-determine the service account name, create the IAM Role correctly, and pass the serviceAccount name into the appropriate spot in values.yaml for the helm charts that I use.
s
yes I do something similar but have an use case where I need to modify and set a custom service account and to do that I need to check an existing service account which is the issue. I will ask in #kubernetes thank you for your help