So now when I have my stack up and running with k8...
# general
d
So now when I have my stack up and running with k8s and everything I need. How would I go about deploying helm charts to it from another repo? What's best practice here? Should I just copy my kubeconfigs etc to github secrets as I did before pulumi for running my CD?
b
hey Max! If you provisioned your cluster with pulumi, a common pattern is to have the kubeconfig be an
Output
and then pass it through to the kubernetes provider as a
StackReference
. I can send an example if this looks like a good approach
👍 1