Hello Everyone! Can anyone help me out with this i...
# general
f
Hello Everyone! Can anyone help me out with this issue related to GKE-pulumi?
w
Without seeing the code, my guess is that you did not instantiate your kubernetes provider with the kubeconfig from the GKE cluster. And/or didn’t pass the provider to the Deployment resource declaration. So it doesn’t know how to talk to your cluster.
If you are using Pulumi to create the cluster, you can get the provider directly from the cluster resource. See this example: https://github.com/pulumi/examples/blob/master/gcp-ts-gke/index.ts
f
Sure! Thank you so much!