Hi :wave: What's the best way to create a `kuberne...
# kubernetes
c
Hi 👋 What's the best way to create a
kubernetes.Provider
for an EKS cluster? I have two Pulumi projects, one that sets up infra like k8s and databases, and a second one for apps that deploy to kubernetes and use the db etc... the app project needs to work with a kubernetes provider (eg when I define a
Service
), like the one that's available from
new eks.Cluster(...)
. But the app code isn't doing the cluster creation, so it presumably needs to create that provider for itself. (I'm new to both Pulumi and k8s so please let me know if any part of what I said doesn't make sense or seems wrong).
v
Hey Craig!
c
Hey!